Java Code Examples for javax.net.ssl.SNIServerName#getEncoded()

The following examples show how to use javax.net.ssl.SNIServerName#getEncoded() . 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: ServerNameExtension.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 2
Source File: ServerNameExtension.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 3
Source File: ServerNameExtension.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 4
Source File: ServerNameExtension.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 5
Source File: ServerNameExtension.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 6
Source File: ServerNameExtension.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 7
Source File: ServerNameExtension.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 8
Source File: ServerNameExtension.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 9
Source File: ServerNameExtension.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 10
Source File: ServerNameExtension.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 11
Source File: ServerNameExtension.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 12
Source File: ServerNameExtension.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}
 
Example 13
Source File: ServerNameExtension.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
ServerNameExtension(List<SNIServerName> serverNames)
        throws IOException {
    super(ExtensionType.EXT_SERVER_NAME);

    listLength = 0;
    sniMap = new LinkedHashMap<>();
    for (SNIServerName serverName : serverNames) {
        // check for duplicated server name type
        if (sniMap.put(serverName.getType(), serverName) != null) {
            // unlikely to happen, but in case ...
            throw new RuntimeException(
                "Duplicated server name of type " + serverName.getType());
        }

        listLength += serverName.getEncoded().length + NAME_HEADER_LENGTH;
    }

    // This constructor is used for ClientHello only.  Empty list is
    // not allowed in client mode.
    if (listLength == 0) {
        throw new RuntimeException("The ServerNameList cannot be empty");
    }
}