/external/openssl/crypto/asn1/ |
n_pkey.c | 126 int rsalen, pkeylen, olen; local 152 pkeylen=i2d_NETSCAPE_PKEY(pkey,NULL); 154 enckey->enckey->digest->length = pkeylen; 182 if ((zz=OPENSSL_malloc(pkeylen)) == NULL) 224 if (!EVP_EncryptUpdate(&ctx,zz,&i,zz,pkeylen))
|
/external/openssl/crypto/evp/ |
pmeth_fn.c | 352 int EVP_PKEY_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *pkeylen) 365 M_check_autoarg(ctx, key, pkeylen, EVP_F_EVP_PKEY_DERIVE) 366 return ctx->pmeth->derive(ctx, key, pkeylen);
|
/external/openssl/apps/ |
req.c | 148 long *pkeylen, char **palgnam, [all...] |
/external/ipsec-tools/src/racoon/ |
crypto_openssl.c | 1002 int pkeylen; local 1030 pkeylen = i2d_PrivateKey(evp, NULL); 1031 if (pkeylen == 0) 1033 pkey = vmalloc(pkeylen); 1037 pkeylen = i2d_PrivateKey(evp, &bp); 1038 if (pkeylen == 0) 1066 int pkeylen; local 1086 pkeylen = i2d_PublicKey(evp, NULL); 1087 if (pkeylen == 0) 1089 pkey = vmalloc(pkeylen); [all...] |
/external/openssl/crypto/pem/ |
pvkfmt.c | 661 unsigned int *psaltlen, unsigned int *pkeylen) 695 *pkeylen = read_ledword(&p);
|