Home | History | Annotate | Download | only in evp

Lines Matching refs:dsa

63 #include <openssl/dsa.h>
249 int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key) {
257 int EVP_PKEY_assign_DSA(EVP_PKEY *pkey, DSA *key) {
261 DSA *EVP_PKEY_get0_DSA(EVP_PKEY *pkey) {
266 return pkey->pkey.dsa;
269 DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey) {
270 DSA *dsa = EVP_PKEY_get0_DSA(pkey);
271 if (dsa != NULL) {
272 DSA_up_ref(dsa);
274 return dsa;
320 } else if (len == 3 && memcmp(name, "DSA", 3) == 0) {