Search Result

Collapse
2 results in 0.0014 seconds.
Keywords
Members
Tags
openssl
  •  

  • homoon
    started a topic OPENSSL RSA Public Encryption
    in C

    OPENSSL RSA Public Encryption

    Hi all,

    I can't get the expected result in this RSA function, is there any mistake? Many thanks!!!!!!:

    Code:
    char* RSAEN2()
    {
        int ret, flen;
        BIGNUM *bnn, *bne, *bnd,*mods, *pub_exp;
        unsigned char *in = "01019D45855EF1686D61A8D9CB54C854A794E68F7A0B2923FBD0";
        unsigned char *out;
        
        bnn = BN_new();
        bne = BN_new();
       //
    ...
    See more | Go to post

  • shubhvid
    started a topic M2Crypto - Unable to get local issuer certificate

    M2Crypto - Unable to get local issuer certificate

    I am trying to set up a peer-authentication mechanism using X509 certs/SSL using M2Crypto.

    I generate a root CA (issuer & subject = ca_hostC...) on the client (hostC)
    I sign the client Cert locally with this CA (issuer: ca_hostC, subject: hostC) and generate a csr on hostS, copy it to hostC, sign it using the root CA, ca_hostc and move the ca_cert and the signed cert to the hostS.

    I generate context:
    ...
    See more | Go to post
    Last edited by shubhvid; Mar 12 '12, 05:29 AM. Reason: tags malformed
Working...