Home | History | Annotate | Download | only in rsa

Lines Matching refs:RSA

62 #include <openssl/rsa.h>
75 RSA_free((RSA *)*pval);
83 ASN1_SIMPLE(RSA, version, LONG),
84 ASN1_SIMPLE(RSA, n, BIGNUM),
85 ASN1_SIMPLE(RSA, e, BIGNUM),
86 ASN1_SIMPLE(RSA, d, BIGNUM),
87 ASN1_SIMPLE(RSA, p, BIGNUM),
88 ASN1_SIMPLE(RSA, q, BIGNUM),
89 ASN1_SIMPLE(RSA, dmp1, BIGNUM),
90 ASN1_SIMPLE(RSA, dmq1, BIGNUM),
91 ASN1_SIMPLE(RSA, iqmp, BIGNUM)
92 } ASN1_SEQUENCE_END_cb(RSA, RSAPrivateKey)
96 ASN1_SIMPLE(RSA, n, BIGNUM),
97 ASN1_SIMPLE(RSA, e, BIGNUM),
98 } ASN1_SEQUENCE_END_cb(RSA, RSAPublicKey)
109 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(RSA, RSAPrivateKey, RSAPrivateKey)
111 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(RSA, RSAPublicKey, RSAPublicKey)
113 RSA *RSAPublicKey_dup(RSA *rsa)
115 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPublicKey), rsa);
118 RSA *RSAPrivateKey_dup(RSA *rsa)
120 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPrivateKey), rsa);