Searched defs:rsa (Results 1 - 4 of 4) sorted by relevance

/bind-9.6-ESV-R11/contrib/pkcs11-keygen/
H A Dreadkey.c18 #include <openssl/rsa.h>
26 RSA *rsa = NULL; local
95 rsa = RSA_new();
96 if (!rsa) {
171 rsa->n = BN_bin2bn(data[0], attr_template[1].ulValueLen, NULL);
173 rsa->e = BN_bin2bn(data[1], attr_template[2].ulValueLen, NULL);
175 rsa->d = BN_bin2bn(data[2], attr_template[3].ulValueLen, NULL);
177 rsa->p = BN_bin2bn(data[3], attr_template[4].ulValueLen, NULL);
179 rsa->q = BN_bin2bn(data[4], attr_template[5].ulValueLen, NULL);
181 rsa
[all...]
H A Dwritekey.c19 #include <openssl/rsa.h>
30 RSA *rsa = NULL; local
114 rsa = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
116 if (rsa == NULL) {
192 if (BN_num_bytes(rsa->n) > 1024) {
197 BN_bn2bin(rsa->n, data[0]);
198 if (BN_num_bytes(rsa->e) > 1024) {
203 BN_bn2bin(rsa->e, data[1]);
204 if (BN_num_bytes(rsa->d) > 1024) {
209 BN_bn2bin(rsa
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Ddst_internal.h58 #include <openssl/rsa.h>
104 RSA *rsa; member in union:dst_key::__anon86
H A Dopensslrsa_link.c49 #include <openssl/rsa.h>
79 #define SET_FLAGS(rsa) \
81 (rsa)->flags &= ~(RSA_FLAG_CACHE_PUBLIC | RSA_FLAG_CACHE_PRIVATE); \
82 (rsa)->flags |= RSA_FLAG_BLINDING; \
85 #define SET_FLAGS(rsa) \
87 (rsa)->flags |= RSA_FLAG_BLINDING; \
93 #define SET_FLAGS(rsa) \
95 (rsa)->flags &= ~(RSA_FLAG_CACHE_PUBLIC | RSA_FLAG_CACHE_PRIVATE); \
96 (rsa)->flags &= ~RSA_FLAG_BLINDING; \
99 #define SET_FLAGS(rsa) \
374 RSA *rsa = key->keydata.rsa; local
516 RSA *rsa = key->keydata.rsa; local
724 RSA *rsa = RSA_new(); local
818 RSA *rsa = EVP_PKEY_get1_RSA(key->keydata.pkey); local
850 RSA *rsa; local
908 RSA *rsa; local
978 RSA *rsa; local
1099 RSA *rsa = NULL; local
[all...]

Completed in 227 milliseconds