Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/err/
Dssl.errordata58 SSL,function,147,SSL_use_psk_identity_hint
/external/conscrypt/src/main/java/org/conscrypt/
DSSLParametersImpl.java513 NativeCrypto.SSL_use_psk_identity_hint(sslNativePointer, identityHint); in setSSLParameters()
DNativeCrypto.java837 public static native void SSL_use_psk_identity_hint(long ssl, String identityHint) in SSL_use_psk_identity_hint() method in NativeCrypto
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java892 NativeCrypto.SSL_use_psk_identity_hint(s, pskIdentityHint); in beforeHandshake()
1513 NativeCrypto.SSL_use_psk_identity_hint(s, null); in test_SSL_use_psk_identity_hint()
1514 NativeCrypto.SSL_use_psk_identity_hint(s, "test"); in test_SSL_use_psk_identity_hint()
1523 NativeCrypto.SSL_use_psk_identity_hint(s, pskIdentityHint.toString()); in test_SSL_use_psk_identity_hint()
/external/boringssl/src/ssl/test/
Dbssl_shim.cc625 !SSL_use_psk_identity_hint(ssl.get(), config->psk_identity.c_str())) { in DoExchange()
/external/boringssl/src/ssl/
Dssl_lib.c2449 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) { in SSL_use_psk_identity_hint() function
2455 OPENSSL_PUT_ERROR(SSL, SSL_use_psk_identity_hint, in SSL_use_psk_identity_hint()
/external/boringssl/src/include/openssl/
Dssl.h1262 OPENSSL_EXPORT int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp8637 ret = SSL_use_psk_identity_hint(ssl, NULL);
8644 ret = SSL_use_psk_identity_hint(ssl, identityHint.c_str());
10847 NATIVE_METHOD(NativeCrypto, SSL_use_psk_identity_hint, "(JLjava/lang/String;)V"),