HomeSort by relevance Sort by last modified time
    Searched full:pk11_decrypt (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/net/third_party/nss/patches/
aesgcmchromium.patch 23 +static PK11CryptFcn pk11_decrypt = NULL;
32 + * PK11_Decrypt functions at run time. */
39 + pk11_decrypt = (PK11CryptFcn)dlsym(handle, "PK11_Decrypt");
44 + * PK11_Decrypt are known to be available. */
46 + pk11_decrypt = PK11_Decrypt;
52 + * In NSS 3.15, PK11_Encrypt and PK11_Decrypt were added to provide access
87 - rv = PK11_Decrypt(keys->write_key, CKM_AES_GCM, &param, out, &uOutLen,
88 + rv = pk11_decrypt(keys->write_key, CKM_AES_GCM, &param, out, &uOutLen
    [all...]
chacha20poly1305.patch 94 + rv = pk11_decrypt(keys->write_key, CKM_NSS_CHACHA20_POLY1305, &param,
aesgcm.patch 540 + rv = PK11_Decrypt(keys->write_key, CKM_AES_GCM, &param, out, &uOutLen,
    [all...]
  /external/chromium_org/net/quic/crypto/
aes_128_gcm_12_decrypter_nss.cc 54 // lookup PK11_Decrypt with dlsym.
57 // resolution of PK11_Decrypt.
74 pk11_decrypt_func_ = PK11_Decrypt;
77 // necessary function (PK11_Decrypt) or mechanism support (CKM_AES_GCM).
79 // If PK11_Decrypt() was successfully resolved, then NSS will support
82 "PK11_Decrypt");
89 // |pk11_decrypt_func_| stores the runtime symbol resolution of PK11_Decrypt.
110 // Calls PK11_Decrypt if it's available. Otherwise, emulates CKM_AES_GCM using
120 // If PK11_Decrypt() was successfully resolved or if bundled version of NSS is
132 // the PK11_Decrypt functio
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3con.c 1865 static PK11CryptFcn pk11_decrypt = NULL; variable
    [all...]

Completed in 3757 milliseconds