HomeSort by relevance Sort by last modified time
    Searched refs:ssl_cipher (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_locl.h 263 * Define the Bitmasks for SSL_CIPHER.algorithms.
266 * is for internal library use only, even though SSL_CIPHER.algorithms
339 /* SSL_CIPHER_ALGORITHM2_AEAD is a flag in SSL_CIPHER.algorithm2 which
344 * for an SSL_CIPHER* with the SSL_CIPHER_ALGORITHM2_AEAD flag. */
345 #define SSL_CIPHER_AEAD_FIXED_NONCE_LEN(ssl_cipher) \
346 (((ssl_cipher->algorithm2 >> 24) & 0xf)*2)
349 * SSL_CIPHER.algorithm2 which indicates that the variable part of the nonce is
354 /* SSL_CIPHER_ALGORITHM2_STATEFUL_AEAD is a flag in SSL_CIPHER.algorithm2 which
641 extern const SSL_CIPHER ssl3_ciphers[];
804 int ssl_cipher_ptr_id_cmp(const SSL_CIPHER **ap, const SSL_CIPHER **bp)
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 305 void operator()(STACK_OF(SSL_CIPHER)* p) const {
306 // We don't own SSL_CIPHER references, so no need for pop_free
310 typedef UniquePtr<STACK_OF(SSL_CIPHER), sk_SSL_CIPHER_Delete> Unique_sk_SSL_CIPHER;
785 static SSL_CIPHER* to_SSL_CIPHER(JNIEnv* env, jlong ssl_cipher_address, bool throwIfNull) {
786 SSL_CIPHER* ssl_cipher local
787 = reinterpret_cast<SSL_CIPHER*>(static_cast<uintptr_t>(ssl_cipher_address));
788 if ((ssl_cipher == NULL) && throwIfNull) {
789 JNI_TRACE("ssl_cipher == null");
790 jniThrowNullPointerException(env, "ssl_cipher == null")
    [all...]

Completed in 4031 milliseconds