Symbol: DSA_new
crypto/heimdal/lib/hx509/crypto.c
1058
dsa = DSA_new();
crypto/openssh/ssh-dss.c
152
if ((private = DSA_new()) == NULL)
crypto/openssh/ssh-dss.c
64
if ((k->dsa = DSA_new()) == NULL)
crypto/openssl/crypto/dsa/dsa_ameth.c
245
to->pkey.dsa = DSA_new();
crypto/openssl/crypto/dsa/dsa_ameth.c
56
if ((dsa = DSA_new()) == NULL) {
crypto/openssl/crypto/dsa/dsa_asn1.c
29
*pval = (ASN1_VALUE *)DSA_new();
crypto/openssl/crypto/dsa/dsa_depr.c
40
if ((ret = DSA_new()) == NULL)
crypto/openssl/crypto/dsa/dsa_pmeth.c
221
dsa = DSA_new();
crypto/openssl/crypto/dsa/dsa_pmeth.c
248
dsa = DSA_new();
crypto/openssl/crypto/pem/pvkfmt.c
385
dsa = DSA_new();
crypto/openssl/crypto/x509/x_all.c
404
return ASN1_d2i_fp_of(DSA, DSA_new, d2i_DSAPrivateKey, fp, dsa);
crypto/openssl/crypto/x509/x_all.c
414
return ASN1_d2i_fp_of(DSA, DSA_new, d2i_DSA_PUBKEY, fp, dsa);
crypto/openssl/crypto/x509/x_all.c
425
return ASN1_d2i_bio_of(DSA, DSA_new, d2i_DSAPrivateKey, bp, dsa);
crypto/openssl/crypto/x509/x_all.c
435
return ASN1_d2i_bio_of(DSA, DSA_new, d2i_DSA_PUBKEY, bp, dsa);
crypto/openssl/include/openssl/dsa.h
106
(DSA *)ASN1_d2i_fp((void *(*)(void))DSA_new, \
crypto/openssl/include/openssl/dsa.h
112
ASN1_d2i_bio_of(DSA, DSA_new, d2i_DSAparams, bp, x)
crypto/openssl/include/openssl/dsa.h
129
OSSL_DEPRECATEDIN_3_0 DSA *DSA_new(void);
crypto/openssl/test/dsa_no_digest_size_test.c
98
DSA *dsa = DSA_new();
crypto/openssl/test/dsatest.c
232
if (!TEST_ptr(dsa = DSA_new())
crypto/openssl/test/dsatest.c
510
|| !TEST_ptr(dsa = DSA_new()))
crypto/openssl/test/dsatest.c
594
|| !TEST_ptr(dsa = DSA_new()))
crypto/openssl/test/evp_libctx_test.c
148
|| !TEST_ptr(dsa = DSA_new())