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

  /external/chromium_org/net/third_party/nss/patches/
aesgcmchromium.patch 22 +static PK11CryptFcn pk11_encrypt = NULL;
31 + /* On Linux we use the system NSS libraries. Look up the PK11_Encrypt and
38 + pk11_encrypt = (PK11CryptFcn)dlsym(handle, "PK11_Encrypt");
43 + /* On other platforms we use our own copy of NSS. PK11_Encrypt and
45 + pk11_encrypt = PK11_Encrypt;
52 + * In NSS 3.15, PK11_Encrypt and PK11_Decrypt were added to provide access
60 + return pk11_encrypt != NULL;
91 - rv = PK11_Encrypt(keys->write_key, CKM_AES_GCM, &param, out, &uOutLen
    [all...]
chacha20poly1305.patch 97 + rv = pk11_encrypt(keys->write_key, CKM_NSS_CHACHA20_POLY1305, &param,
aesgcm.patch 543 + rv = PK11_Encrypt(keys->write_key, CKM_AES_GCM, &param, out, &uOutLen,
    [all...]
  /external/chromium_org/net/quic/crypto/
aes_128_gcm_12_encrypter_nss.cc 54 // lookup PK11_Encrypt with dlsym.
57 // resolution of PK11_Encrypt.
74 pk11_encrypt_func_ = PK11_Encrypt;
77 // necessary function (PK11_Encrypt) or mechanism support (CKM_AES_GCM).
79 // If PK11_Encrypt() was successfully resolved, then NSS will support
82 "PK11_Encrypt");
89 // |pk11_encrypt_func_| stores the runtime symbol resolution of PK11_Encrypt.
111 // Calls PK11_Encrypt if it's available. Otherwise, emulates CKM_AES_GCM using
121 // If PK11_Encrypt() was successfully resolved or if bundled version of NSS is
133 // the PK11_Encrypt functio
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3con.c 1864 static PK11CryptFcn pk11_encrypt = NULL; variable
    [all...]

Completed in 68 milliseconds