csr

PKCS10CertificationRequest creation on android

Hello: I'm very new to android and java both, so hopefully I'm missing something easy here. All I want to do is create a simple PKCS10 certificate signing request. I have some code that will compile and run on my ubuntu box (java-6-openjdk), but throws a null pointer exception in the android emulator: KeyPair myKeyPair = KeyP...

iPhone - Certificate Signing Request not showing in Distribution Profile

Hi all, We're trying to get our app ready for distribution on the app store. We provisioned it for a single device which works well so we know its not the code. We create a Certificate Signing Request (CSR) and upload it as instructed (we followed lots of videos and done a lot of reading) but when we hit submit to upload our CSR the pag...

Generating a CSR in Python

I'm trying to generate a CSR in Python without using OpenSSL. If someone could point in the right direction, I'd be very grateful. ...

Sparse matrix creation in parallel

Are there any algorithms that allow efficient creation (element filling) of sparse (e.g. CSR or coordinate) matrix in parallel? ...

Python subprocess problem

Hi, I'm writing a script to generate a CSR in Python. The script is very simple. I generate an RSA private key by using the following: keycmd = "openssl genrsa -out mykey.pem 2048" keyprocess = Popen(keycmd, shell=True, stdout=PIPE) csrcmd = "openssl req -new -key mykey.pem -subj "+ subj + " -out mycsr.csr" reqprocess = Popen(csrcmd, s...