/external/chromium_org/third_party/boringssl/src/crypto/evp/ |
pbkdf.c | 63 const EVP_MD *digest, size_t key_len, uint8_t *out_key) { 72 p = out_key; 137 uint8_t *out_key) { 139 EVP_sha1(), key_len, out_key);
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
ec_key.h | 187 * at |*inp|. If |out_key| is not NULL then, on exit, a pointer to the result 188 * is in |*out_key|. If |*out_key| is already non-NULL on entry then the result 189 * is written directly into |*out_key|, otherwise a fresh |EC_KEY| is 192 OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey(EC_KEY **out_key, const uint8_t **inp, 202 * |len| bytes at |*inp|. If |out_key| is not NULL then, on exit, a pointer to 203 * the result is in |*out_key|. If |*out_key| is already non-NULL on entry then 204 * the result is written directly into |*out_key|, otherwise a fresh |EC_KEY| 207 OPENSSL_EXPORT EC_KEY *d2i_ECParameters(EC_KEY **out_key, const uint8_t **inp [all...] |
pkcs8.h | 127 * and decrypts it using |password|, sets |*out_key| to the included private 130 OPENSSL_EXPORT int PKCS12_get_key_and_certs(EVP_PKEY **out_key,
|
evp.h | 372 * and |salt|, using |digest|, and outputs |key_len| bytes to |out_key|. It 377 size_t key_len, uint8_t *out_key); 384 size_t key_len, uint8_t *out_key); [all...] |
/external/chromium_org/net/quic/crypto/ |
channel_id_chromium.cc | 52 std::string out_key; local 53 if (!ec_private_key_->ExportRawPublicKey(&out_key)) { 56 return out_key;
|
/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/ |
pkcs8.c | 617 EVP_PKEY **out_key; member in struct:pkcs12_context 781 if (*ctx->out_key) { 808 *ctx->out_key = EVP_PKCS82PKEY(pki); 811 if (ctx->out_key == NULL) { 858 int PKCS12_get_key_and_certs(EVP_PKEY **out_key, STACK_OF(X509) *out_certs, 878 *out_key = NULL; 933 ctx.out_key = out_key; 1009 if (*out_key) { 1010 EVP_PKEY_free(*out_key); [all...] |
/external/chromium_org/content/browser/media/ |
webrtc_identity_store_unittest.cc | 28 std::string* out_key, 37 *out_key = private_key;
|