Searched refs:dsa_g (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/crypto/openssh/regress/unittests/sshkey/
H A Dcommon.h22 const BIGNUM *dsa_g(struct sshkey *k);
H A Dcommon.c132 dsa_g(struct sshkey *k) function
H A Dtest_sshkey.c273 ASSERT_PTR_NE(dsa_g(kd), NULL);
317 ASSERT_PTR_NE(dsa_g(k1), NULL);
H A Dtest_file.c172 ASSERT_BIGNUM_EQ(dsa_g(k1), a);
/freebsd-13-stable/crypto/openssh/
H A Dsshkey.c723 const BIGNUM *rsa_n, *rsa_e, *dsa_p, *dsa_q, *dsa_g, *dsa_pub_key; local
757 DSA_get0_pqg(key->dsa, &dsa_p, &dsa_q, &dsa_g);
762 (ret = sshbuf_put_bignum2(b, dsa_g)) != 0 ||
1734 const BIGNUM *dsa_p, *dsa_q, *dsa_g, *dsa_pub_key; local
1749 DSA_get0_pqg(k->dsa, &dsa_p, &dsa_q, &dsa_g);
1753 (dsa_g_dup = BN_dup(dsa_g)) == NULL ||
2020 BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL, *dsa_pub_key = NULL; local
2094 (dsa_g = BN_new()) == NULL ||
2101 sshbuf_get_bignum2(b, dsa_g) != 0 ||
2106 if (!DSA_set0_pqg(key->dsa, dsa_p, dsa_q, dsa_g)) {
2520 const BIGNUM *rsa_n, *rsa_e, *dsa_p, *dsa_q, *dsa_g, *dsa_pub_key; local
2774 const BIGNUM *dsa_p, *dsa_q, *dsa_g, *dsa_pub_key, *dsa_priv_key; local
2928 BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL; local
[all...]
H A Dssh-keygen.c453 BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL; local
502 (dsa_g = BN_new()) == NULL ||
507 buffer_get_bignum_bits(b, dsa_g);
511 if (!DSA_set0_pqg(key->dsa, dsa_p, dsa_q, dsa_g))
513 dsa_p = dsa_q = dsa_g = NULL; /* transferred */

Completed in 73 milliseconds