Home
last modified time | relevance | path

Searched refs:SSL_use_psk_identity_hint (Results 1 – 13 of 13) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java449 NativeCrypto.SSL_use_psk_identity_hint(ssl, this, identityHint); in enablePSKKeyManagerIfRequested()
DNativeCrypto.java932 …static native void SSL_use_psk_identity_hint(long ssl, NativeSsl ssl_holder, String identityHint) … in SSL_use_psk_identity_hint() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DNativeSsl.java450 NativeCrypto.SSL_use_psk_identity_hint(ssl, this, identityHint); in enablePSKKeyManagerIfRequested()
DNativeCrypto.java972 …static native void SSL_use_psk_identity_hint(long ssl, NativeSsl ssl_holder, String identityHint) … in SSL_use_psk_identity_hint() method in NativeCrypto
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java944 NativeCrypto.SSL_use_psk_identity_hint(s, null, pskIdentityHint); in beforeHandshake()
1713 NativeCrypto.SSL_use_psk_identity_hint(s, null, null); in test_SSL_use_psk_identity_hint()
1714 NativeCrypto.SSL_use_psk_identity_hint(s, null, "test"); in test_SSL_use_psk_identity_hint()
1723 NativeCrypto.SSL_use_psk_identity_hint(s, null, pskIdentityHint.toString()); in test_SSL_use_psk_identity_hint()
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/
DNativeCryptoTest.java952 NativeCrypto.SSL_use_psk_identity_hint(s, null, pskIdentityHint); in beforeHandshake()
1721 NativeCrypto.SSL_use_psk_identity_hint(s, null, null); in test_SSL_use_psk_identity_hint()
1722 NativeCrypto.SSL_use_psk_identity_hint(s, null, "test"); in test_SSL_use_psk_identity_hint()
1731 NativeCrypto.SSL_use_psk_identity_hint(s, null, pskIdentityHint.toString()); in test_SSL_use_psk_identity_hint()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list308 SSL_use_psk_identity_hint
DBoringSSL-GRPC.podspec1860 '#define SSL_use_psk_identity_hint GRPC_SHADOW_SSL_use_psk_identity_hint',
/external/boringssl/src/ssl/test/
Dtest_config.cc1556 !SSL_use_psk_identity_hint(ssl.get(), psk_identity.c_str())) { in NewSSL()
/external/boringssl/src/include/openssl/
Dssl.h3018 OPENSSL_EXPORT int SSL_use_psk_identity_hint(SSL *ssl,
/external/boringssl/src/ssl/
Dssl_lib.cc2553 int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) { in SSL_use_psk_identity_hint() function
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h336 #define SSL_use_psk_identity_hint GRPC_SHADOW_SSL_use_psk_identity_hint macro
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc7155 ret = SSL_use_psk_identity_hint(ssl, nullptr); in NativeCrypto_SSL_use_psk_identity_hint()
7162 ret = SSL_use_psk_identity_hint(ssl, identityHint.c_str()); in NativeCrypto_SSL_use_psk_identity_hint()
10141 CONSCRYPT_NATIVE_METHOD(SSL_use_psk_identity_hint, "(J" REF_SSL "Ljava/lang/String;)V"),