Home | History | Annotate | Download | only in rsa

Lines Matching refs:RSA

62 #include <openssl/rsa.h>
74 RSA_free((RSA *)*pval);
82 ASN1_SIMPLE(RSA, version, LONG),
83 ASN1_SIMPLE(RSA, n, BIGNUM),
84 ASN1_SIMPLE(RSA, e, BIGNUM),
85 ASN1_SIMPLE(RSA, d, BIGNUM),
86 ASN1_SIMPLE(RSA, p, BIGNUM),
87 ASN1_SIMPLE(RSA, q, BIGNUM),
88 ASN1_SIMPLE(RSA, dmp1, BIGNUM),
89 ASN1_SIMPLE(RSA, dmq1, BIGNUM),
90 ASN1_SIMPLE(RSA, iqmp, BIGNUM)
91 } ASN1_SEQUENCE_END_cb(RSA, RSAPrivateKey)
95 ASN1_SIMPLE(RSA, n, BIGNUM),
96 ASN1_SIMPLE(RSA, e, BIGNUM),
97 } ASN1_SEQUENCE_END_cb(RSA, RSAPublicKey)
99 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(RSA, RSAPrivateKey, RSAPrivateKey)
101 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(RSA, RSAPublicKey, RSAPublicKey)
103 RSA *RSAPublicKey_dup(RSA *rsa)
105 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPublicKey), rsa);
108 RSA *RSAPrivateKey_dup(RSA *rsa)
110 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPrivateKey), rsa);