HomeSort by relevance Sort by last modified time
    Searched defs:priv_key (Results 1 - 10 of 10) sorted by null

  /external/boringssl/src/include/openssl/
dsa.h 397 BIGNUM *priv_key; /* x private key */ member in struct:dsa_st
dh.h 253 BIGNUM *priv_key; /* x */ member in struct:dh_st
  /external/boringssl/src/crypto/dh/
dh.c 111 BN_clear_free(dh->priv_key);
123 *out_priv_key = dh->priv_key;
260 BIGNUM *pub_key = NULL, *priv_key = NULL; local
272 if (dh->priv_key == NULL) {
273 priv_key = BN_new();
274 if (priv_key == NULL) {
279 priv_key = dh->priv_key;
298 if (!BN_rand_range_ex(priv_key, 2, dh->q)) {
313 if (!BN_rand(priv_key, priv_bits, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY))
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ecdsa/
ecdsa.c 358 const BIGNUM *priv_key; local
366 priv_key = EC_KEY_get0_private_key(eckey);
368 if (group == NULL || priv_key == NULL) {
407 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx)) {
  /external/boringssl/src/crypto/evp/
print.c 223 const BIGNUM *priv_key, *pub_key; local
225 priv_key = NULL;
227 priv_key = x->priv_key;
245 update_buflen(priv_key, &buf_len);
254 if (priv_key) {
261 if (!bn_print(bp, "priv:", priv_key, m, off) ||
302 const BIGNUM *priv_key; local
343 priv_key = EC_KEY_get0_private_key(x);
344 if (priv_key && (i = (size_t)BN_num_bytes(priv_key)) > buf_len)
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
ec_key.c 154 BN_clear_free(r->priv_key);
188 if (src->priv_key) {
189 if (dest->priv_key == NULL) {
190 dest->priv_key = BN_new();
191 if (dest->priv_key == NULL) {
195 if (!BN_copy(dest->priv_key, src->priv_key)) {
245 if (key->priv_key != NULL &&
246 BN_cmp(key->priv_key, EC_GROUP_get0_order(group)) >= 0) {
253 return key->priv_key;
437 BIGNUM *priv_key = NULL; local
    [all...]
internal.h 236 BIGNUM *priv_key; member in struct:ec_key_st
  /external/boringssl/src/crypto/dsa/
dsa.c 119 BN_clear_free(dsa->priv_key);
139 *out_priv_key = dsa->priv_key;
436 BIGNUM *pub_key = NULL, *priv_key = NULL; local
443 priv_key = dsa->priv_key;
444 if (priv_key == NULL) {
445 priv_key = BN_new();
446 if (priv_key == NULL) {
451 if (!BN_rand_range_ex(priv_key, 1, dsa->q)) {
465 !BN_mod_exp_mont_consttime(pub_key, dsa->g, priv_key, dsa->p, ctx
    [all...]
  /external/curl/lib/vtls/
openssl.c 554 EVP_PKEY *priv_key = NULL; local
568 priv_key = (EVP_PKEY *)
573 if(!priv_key) {
577 if(SSL_CTX_use_PrivateKey(ctx, priv_key) != 1) {
579 EVP_PKEY_free(priv_key);
582 EVP_PKEY_free(priv_key); /* we don't need the handle any more... */
2605 const BIGNUM *priv_key; local
2639 const BIGNUM *priv_key; local
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 817 milliseconds