Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DNativeSsl.java438 NativeCrypto.SSL_use_psk_identity_hint(ssl, this, identityHint); in enablePSKKeyManagerIfRequested()
DNativeCrypto.java907 …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.java932 NativeCrypto.SSL_use_psk_identity_hint(s, null, pskIdentityHint); in beforeHandshake()
1699 NativeCrypto.SSL_use_psk_identity_hint(s, null, null); in test_SSL_use_psk_identity_hint()
1700 NativeCrypto.SSL_use_psk_identity_hint(s, null, "test"); in test_SSL_use_psk_identity_hint()
1709 NativeCrypto.SSL_use_psk_identity_hint(s, null, pskIdentityHint.toString()); in test_SSL_use_psk_identity_hint()
/external/boringssl/src/include/openssl/
Dssl.h2929 OPENSSL_EXPORT int SSL_use_psk_identity_hint(SSL *ssl,
/external/boringssl/src/ssl/test/
Dbssl_shim.cc2046 !SSL_use_psk_identity_hint(ssl.get(), config->psk_identity.c_str())) { in DoConnection()
/external/boringssl/src/ssl/
Dssl_lib.cc2389 int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) { in SSL_use_psk_identity_hint() function
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc7068 ret = SSL_use_psk_identity_hint(ssl, nullptr); in NativeCrypto_SSL_use_psk_identity_hint()
7075 ret = SSL_use_psk_identity_hint(ssl, identityHint.c_str()); in NativeCrypto_SSL_use_psk_identity_hint()
9964 CONSCRYPT_NATIVE_METHOD(SSL_use_psk_identity_hint, "(J" REF_SSL "Ljava/lang/String;)V"),