Home | History | Annotate | Download | only in rsa

Lines Matching refs:RSA

56 #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);
94 ASN1_SIMPLE(RSA, n, BIGNUM),
95 ASN1_SIMPLE(RSA, e, BIGNUM),
96 } ASN1_SEQUENCE_END_cb(RSA, RSAPublicKey);
115 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(RSA, RSAPrivateKey, RSAPrivateKey);
117 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_const_fname(RSA, RSAPublicKey, RSAPublicKey);
119 RSA *RSAPublicKey_dup(const RSA *rsa) {
120 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPublicKey), (RSA *) rsa);
123 RSA *RSAPrivateKey_dup(const RSA *rsa) {
124 return ASN1_item_dup(ASN1_ITEM_rptr(RSAPrivateKey), (RSA *) rsa);