Searched defs:priv_key (Results 1 - 16 of 16) sorted by relevance

/external/boringssl/src/crypto/ecdh/
H A Decdh.c78 EC_KEY *priv_key,
81 const BIGNUM *const priv = EC_KEY_get0_private_key(priv_key);
97 const EC_GROUP *const group = EC_KEY_get0_group(priv_key);
77 ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *priv_key, void *(*kdf)(const void *in, size_t inlen, void *out, size_t *outlen)) argument
/external/boringssl/include/openssl/
H A Ddsa.h320 BIGNUM *priv_key; /* x private key */ member in struct:dsa_st
H A Ddh.h207 BIGNUM *priv_key; /* x */ member in struct:dh_st
/external/boringssl/src/include/openssl/
H A Ddsa.h320 BIGNUM *priv_key; /* x private key */ member in struct:dsa_st
H A Ddh.h207 BIGNUM *priv_key; /* x */ member in struct:dh_st
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/netscape/
H A DNetscapeCertRequest.java214 public void sign(PrivateKey priv_key) throws NoSuchAlgorithmException, argument
218 sign(priv_key, null);
221 public void sign(PrivateKey priv_key, SecureRandom rand) argument
231 sig.initSign(priv_key, rand);
235 sig.initSign(priv_key);
/external/boringssl/src/crypto/dh/
H A Ddh.c112 BN_clear_free(dh->priv_key);
240 BIGNUM *pub_key = NULL, *priv_key = NULL; local
253 if (dh->priv_key == NULL) {
254 priv_key = BN_new();
255 if (priv_key == NULL) {
260 priv_key = dh->priv_key;
281 if (!BN_rand_range(priv_key, dh->q)) {
284 } while (BN_is_zero(priv_key) || BN_is_one(priv_key));
[all...]
/external/boringssl/src/crypto/ec/
H A Dec_key.c153 BN_clear_free(r->priv_key);
186 if (src->priv_key) {
187 if (dest->priv_key == NULL) {
188 dest->priv_key = BN_new();
189 if (dest->priv_key == NULL) {
193 if (!BN_copy(dest->priv_key, src->priv_key)) {
250 if (key->priv_key != NULL &&
251 BN_cmp(key->priv_key, EC_GROUP_get0_order(group)) >= 0) {
258 return key->priv_key;
261 EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) argument
411 BIGNUM *priv_key = NULL; local
[all...]
H A Dinternal.h276 BIGNUM *priv_key; member in struct:ec_key_st
H A Dec_asn1.c288 EC_PRIVATEKEY *priv_key = NULL; local
291 priv_key = d2i_EC_PRIVATEKEY(NULL, &in, len);
292 if (priv_key == NULL) {
307 if (priv_key->parameters) {
309 ret->group = ec_asn1_pkparameters2group(priv_key->parameters);
317 ret->version = priv_key->version;
319 if (priv_key->privateKey) {
320 ret->priv_key =
321 BN_bin2bn(M_ASN1_STRING_data(priv_key->privateKey),
322 M_ASN1_STRING_length(priv_key
395 EC_PRIVATEKEY *priv_key = NULL; local
[all...]
/external/boringssl/src/crypto/ecdsa/
H A Decdsa.c373 const BIGNUM *priv_key; local
381 priv_key = EC_KEY_get0_private_key(eckey);
383 if (group == NULL || priv_key == NULL) {
422 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx)) {
/external/boringssl/src/crypto/evp/
H A Dp_dsa_asn1.c209 dsa->priv_key = ASN1_INTEGER_to_BN(privkey, NULL);
210 if (dsa->priv_key == NULL) {
226 if (!BN_mod_exp(dsa->pub_key, dsa->g, dsa->priv_key, dsa->p, ctx)) {
253 if (!pkey->pkey.dsa || !pkey->pkey.dsa->priv_key) {
272 prkey = BN_to_ASN1_INTEGER(pkey->pkey.dsa->priv_key, NULL);
368 const BIGNUM *priv_key, *pub_key; local
370 priv_key = NULL;
372 priv_key = x->priv_key;
390 update_buflen(priv_key,
[all...]
H A Dp_ec_asn1.c241 const BIGNUM *priv_key; local
257 priv_key = EC_KEY_get0_private_key(eckey);
258 if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, NULL)) {
382 const BIGNUM *priv_key; local
423 priv_key = EC_KEY_get0_private_key(x);
424 if (priv_key && (i = (size_t)BN_num_bytes(priv_key)) > buf_len) {
428 priv_key = NULL;
454 if ((priv_key != NULL) &&
455 !ASN1_bn_print(bp, "priv:", priv_key, buffe
[all...]
/external/boringssl/src/crypto/dsa/
H A Ddsa.c121 BN_clear_free(dsa->priv_key);
399 BIGNUM *pub_key = NULL, *priv_key = NULL; local
407 priv_key = dsa->priv_key;
408 if (priv_key == NULL) {
409 priv_key = BN_new();
410 if (priv_key == NULL) {
416 if (!BN_rand_range(priv_key, dsa->q)) {
419 } while (BN_is_zero(priv_key));
430 BN_with_flags(&prk, priv_key, BN_FLG_CONSTTIM
[all...]
/external/curl/lib/vtls/
H A Dopenssl.c562 EVP_PKEY *priv_key = NULL; local
577 priv_key = (EVP_PKEY *)
586 if(!priv_key) {
590 if(SSL_CTX_use_PrivateKey(ctx, priv_key) != 1) {
592 EVP_PKEY_free(priv_key);
595 EVP_PKEY_free(priv_key); /* we don't need the handle any more... */
2528 print_pubkey_BN(dsa, priv_key, i);
2534 print_pubkey_BN(dh, priv_key, i);
/external/conscrypt/src/main/java/org/conscrypt/
H A DNativeCrypto.java83 byte[] pub_key, byte[] priv_key);
82 EVP_PKEY_new_DSA(byte[] p, byte[] q, byte[] g, byte[] pub_key, byte[] priv_key) argument

Completed in 274 milliseconds