HomeSort by: relevance | last modified time | path
    Searched refs:rsa_e (Results 1 - 10 of 10) sorted by relevancy

  /src/crypto/external/cpl/trousers/dist/src/trspi/crypto/openssl/
rsa.c 83 BIGNUM *rsa_n = NULL, *rsa_e = NULL; local
93 rsa_e = BN_bin2bn(exp, sizeof(exp), NULL);
95 if (rsa_n == NULL || rsa_e == NULL) {
98 BN_free(rsa_e);
101 if (!RSA_set0_key(rsa, rsa_n, rsa_e, NULL)) {
104 BN_free(rsa_e);
154 BIGNUM *rsa_n = NULL, *rsa_e = NULL; local
180 rsa_e = BN_bin2bn(exp, sizeof(exp), NULL);
182 if (rsa_n == NULL || rsa_e == NULL) {
185 BN_free(rsa_e);
235 BIGNUM *rsa_n = NULL, *rsa_e = NULL; local
    [all...]
  /src/crypto/external/bsd/openssh/dist/
ssh-rsa.c 72 const BIGNUM *rsa_n, *rsa_e; local
80 RSA_get0_key(rsa, &rsa_n, &rsa_e, NULL);
81 if ((r = sshbuf_put_bignum2(b, rsa_e)) != 0 ||
93 const BIGNUM *rsa_n, *rsa_e, *rsa_d, *rsa_iqmp, *rsa_p, *rsa_q; local
98 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
105 (r = sshbuf_put_bignum2(b, rsa_e)) != 0)
156 const BIGNUM *rsa_n, *rsa_e; local
166 RSA_get0_key(rsa_from, &rsa_n, &rsa_e, NULL);
168 (rsa_e_dup = BN_dup(rsa_e)) == NULL) {
196 BIGNUM *rsa_n = NULL, *rsa_e = NULL local
235 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL; local
    [all...]
ssh-pkcs11.c 995 BIGNUM *rsa_n, *rsa_e; local
1044 rsa_e = BN_bin2bn(key_attr[2].pValue, key_attr[2].ulValueLen, NULL);
1045 if (rsa_n == NULL || rsa_e == NULL) {
1049 if (!RSA_set0_key(rsa, rsa_n, rsa_e, NULL))
1051 rsa_n = rsa_e = NULL; /* transferred */
ssh-keygen.c 447 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL; local
502 if ((rsa_e = BN_new()) == NULL)
504 if (!BN_set_word(rsa_e, e)) {
505 BN_clear_free(rsa_e);
528 if (!RSA_set0_key(rsa, rsa_n, rsa_e, rsa_d))
530 rsa_n = rsa_e = rsa_d = NULL; /* transferred */
  /src/crypto/external/apache2/openssl/dist/providers/implementations/encode_decode/
encode_key2text.c 464 const BIGNUM *rsa_d = NULL, *rsa_n = NULL, *rsa_e = NULL; local
496 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
514 if (!ossl_bio_print_labeled_bignum(out, exponent_label, rsa_e))
  /src/crypto/external/bsd/openssl/dist/crypto/rsa/
rsa_backend.c 127 const BIGNUM *rsa_d = NULL, *rsa_n = NULL, *rsa_e = NULL; local
135 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
139 || !ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_RSA_E, rsa_e))
  /src/crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/
encode_key2text.c 635 const BIGNUM *rsa_d = NULL, *rsa_n = NULL, *rsa_e = NULL; local
667 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
683 if (!print_labeled_bignum(out, exponent_label, rsa_e))
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_backend.c 264 const BIGNUM *rsa_d = NULL, *rsa_n = NULL, *rsa_e = NULL; local
272 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
276 || !ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_RSA_E, rsa_e))
  /src/crypto/external/bsd/openssl/dist/providers/fips/
self_test_data.inc 1143 static const unsigned char rsa_e[] = { 0x01, 0x00, 0x01 };
1271 ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e),
1283 ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e),
1289 ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e),
  /src/crypto/external/apache2/openssl/dist/providers/fips/
self_test_data.inc 1159 static const unsigned char rsa_e[] = { 0x01, 0x00, 0x01 };
1287 ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e),
1299 ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e),
1305 ST_KAT_PARAM_BIGNUM(OSSL_PKEY_PARAM_RSA_E, rsa_e),

Completed in 70 milliseconds