HomeSort by: relevance | last modified time | path
    Searched defs:rsa_d (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
ssh-rsa.c 94 const BIGNUM *rsa_n, *rsa_e, *rsa_d, *rsa_iqmp, *rsa_p, *rsa_q; local
99 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
109 if ((r = sshbuf_put_bignum2(b, rsa_d)) != 0 ||
236 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL; local
262 if ((r = sshbuf_get_bignum2(b, &rsa_d)) != 0 ||
267 if ((r = ssh_rsa_complete_crt_parameters(rsa_d, rsa_p, rsa_q,
270 if (!RSA_set0_key(rsa, NULL, NULL, rsa_d)) {
274 rsa_d = NULL; /* transferred */
301 BN_clear_free(rsa_d);
362 ssh_rsa_complete_crt_parameters(const BIGNUM *rsa_d, const BIGNUM *rsa_p
    [all...]
ssh-keygen.c 445 BIGNUM *rsa_n = NULL, *rsa_e = NULL, *rsa_d = NULL; local
508 (rsa_d = BN_new()) == NULL ||
513 buffer_get_bignum_bits(b, rsa_d);
518 if ((r = ssh_rsa_complete_crt_parameters(rsa_d, rsa_p, rsa_q,
526 if (!RSA_set0_key(rsa, rsa_n, rsa_e, rsa_d))
528 rsa_n = rsa_e = rsa_d = NULL; /* transferred */
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_backend.c 262 const BIGNUM *rsa_d = NULL, *rsa_n = NULL, *rsa_e = NULL; local
270 RSA_get0_key(rsa, &rsa_n, &rsa_e, &rsa_d);
278 if (include_private && rsa_d != NULL) {
281 rsa_d)
  /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);
519 if (!ossl_bio_print_labeled_bignum(out, "privateExponent:", rsa_d))
  /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);
143 if (include_private && rsa_d != NULL) {
146 rsa_d)
  /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);
688 if (!print_labeled_bignum(out, "privateExponent:", rsa_d))

Completed in 33 milliseconds