Hi,

I am new in OpenSSL.

What I want is to encrypt a message in PC and then decrypt it in Symbian OS
(mobile).

I have generated the keys in PC.

I am having problem to use the public key in Symbian. In Symbian the
following APIs available.

--------------------------------
RInteger n = RInteger::NewL(exp);  //exp is a descriptor containing
encryption exponent(e)
RInteger e = RInteger::NewL(mod);  //mod is a descriptor containing
modulus(n)
CleanupClosePushL(e);
CleanupClosePushL(n);
 
CRSAPublicKey* publicKey = CRSAPublicKey::NewL(e, n);  // create RSA
PublicKey
----------------------------------------------------------------
So my Q is is it possible to get the exp and mod used to generate the public
key?
In that case if I generate the public key in Symbian using exp and mod, will
it be same as the public key in PC?

Thanks,
BT
-- 
View this message in context: 
http://old.nabble.com/importing-RSA-key-from-file-tp26369372p26369372.html
Sent from the OpenSSL - User mailing list archive at Nabble.com.
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to