Seeking pure Python AES/RSA library compatible with OpenSSL

2009-01-22 Thread novosibirsk
Hello, I am faced with the following problem: 0. In pure Python, encrypt some data using AES. 1. In pure Python, encrypt the key used in 0 with RSA, given a private key in PEM format. 2. In C, using OpenSSL, decrypt the AES key from 0 using the public key that corresponds to private key in 1.

Re: Seeking pure Python AES/RSA library compatible with OpenSSL

2009-01-22 Thread novosibirsk
On Jan 22, 1:42 am, Paul Rubin http://phr...@nospam.invalid wrote: novosibi...@gmail.com writes: 0. In pure Python, encrypt some data using AES. 1. In pure Python, encrypt the key used in 0 with RSA, given a private key in PEM format. Question --- is there a library I can use for steps 0