Java Code Examples for javax.net.ssl.SSLEngine#getHandshakeApplicationProtocol()

The following examples show how to use javax.net.ssl.SSLEngine#getHandshakeApplicationProtocol() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MyX509ExtendedKeyManager.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public String chooseEngineClientAlias(String[] keyType, Principal[] issuers,
        SSLEngine engine) {
    String nap = engine.getHandshakeApplicationProtocol();
    checkALPN(nap);

    return akm.chooseEngineClientAlias(keyType, issuers, engine);
}
 
Example 2
Source File: MyX509ExtendedKeyManager.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public String chooseEngineServerAlias(String keyType, Principal[] issuers,
        SSLEngine engine) {
    String nap = engine.getHandshakeApplicationProtocol();
    checkALPN(nap);

    return akm.chooseEngineServerAlias(keyType, issuers, engine);
}
 
Example 3
Source File: MyX509ExtendedKeyManager.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public String chooseEngineClientAlias(String[] keyType, Principal[] issuers,
        SSLEngine engine) {
    String nap = engine.getHandshakeApplicationProtocol();
    checkALPN(nap);

    return akm.chooseEngineClientAlias(keyType, issuers, engine);
}
 
Example 4
Source File: MyX509ExtendedKeyManager.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public String chooseEngineServerAlias(String keyType, Principal[] issuers,
        SSLEngine engine) {
    String nap = engine.getHandshakeApplicationProtocol();
    checkALPN(nap);

    return akm.chooseEngineServerAlias(keyType, issuers, engine);
}
 
Example 5
Source File: MyX509ExtendedKeyManager.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Override
public String chooseEngineClientAlias(String[] keyType, Principal[] issuers,
        SSLEngine engine) {
    String nap = engine.getHandshakeApplicationProtocol();
    checkALPN(nap);

    return akm.chooseEngineClientAlias(keyType, issuers, engine);
}
 
Example 6
Source File: MyX509ExtendedKeyManager.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Override
public String chooseEngineServerAlias(String keyType, Principal[] issuers,
        SSLEngine engine) {
    String nap = engine.getHandshakeApplicationProtocol();
    checkALPN(nap);

    return akm.chooseEngineServerAlias(keyType, issuers, engine);
}