Home
last modified time | relevance | path

Searched refs:sslDSAKey (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/lib/libkmf/plugins/kmf_openssl/common/
H A Dopenssl_spi.c1483 DSA *sslDSAKey = NULL; in OpenSSL_CreateKeypair() local
1580 sslDSAKey = DSA_new(); in OpenSSL_CreateKeypair()
1581 if (sslDSAKey == NULL) { in OpenSSL_CreateKeypair()
1586 if ((sslDSAKey->p = BN_bin2bn(P, sizeof (P), sslDSAKey->p)) == in OpenSSL_CreateKeypair()
1592 if ((sslDSAKey->q = BN_bin2bn(Q, sizeof (Q), sslDSAKey->q)) == in OpenSSL_CreateKeypair()
1598 if ((sslDSAKey->g = BN_bin2bn(G, sizeof (G), sslDSAKey->g)) == in OpenSSL_CreateKeypair()
1605 if (!DSA_generate_key(sslDSAKey)) { in OpenSSL_CreateKeypair()
1615 if (EVP_PKEY_set1_DSA(eprikey, sslDSAKey)) { in OpenSSL_CreateKeypair()
1655 (void) BN_copy(dp->p, sslDSAKey->p); in OpenSSL_CreateKeypair()
1656 (void) BN_copy(dp->q, sslDSAKey->q); in OpenSSL_CreateKeypair()
[all …]