mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8196584: TLS 1.3 Implementation
Co-authored-by: Adam Petcher <adam.petcher@oracle.com> Co-authored-by: Amanda Jiang <amanda.jiang@oracle.com> Co-authored-by: Anthony Scarpino <anthony.scarpino@oracle.com> Co-authored-by: Bradford Wetmore <bradford.wetmore@oracle.com> Co-authored-by: Jamil Nimeh <jamil.j.nimeh@oracle.com> Co-authored-by: John Jiang <sha.jiang@oracle.com> Co-authored-by: Rajan Halade <rajan.halade@oracle.com> Co-authored-by: Sibabrata Sahoo <sibabrata.sahoo@oracle.com> Co-authored-by: Valerie Peng <valerie.peng@oracle.com> Co-authored-by: Weijun Wang <weijun.wang@oracle.com> Reviewed-by: ascarpino, coffeys, dfuchs, jjiang, jnimeh, mullan, rhalade, ssahoo, valeriep, weijun, wetmore, xuelei
This commit is contained in:
parent
c7c819cd8b
commit
87c6761704
262 changed files with 44368 additions and 32552 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -26,24 +26,23 @@
|
|||
package sun.security.ssl;
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.channels.SocketChannel;
|
||||
import java.net.*;
|
||||
import java.nio.channels.SocketChannel;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.net.ssl.*;
|
||||
|
||||
/**
|
||||
* Abstract base class for SSLSocketImpl. Its purpose is to house code with
|
||||
* no SSL related logic (or no logic at all). This makes SSLSocketImpl shorter
|
||||
* and easier to read. It contains a few constants and static methods plus
|
||||
* overridden java.net.Socket methods.
|
||||
* Abstract base class for SSLSocketImpl.
|
||||
*
|
||||
* Its purpose is to house code with no SSL related logic (or no logic at all).
|
||||
* This makes SSLSocketImpl shorter and easier to read. It contains a few
|
||||
* constants and static methods plus overridden java.net.Socket methods.
|
||||
*
|
||||
* Methods are defined final to ensure that they are not accidentally
|
||||
* overridden in SSLSocketImpl.
|
||||
*
|
||||
* @see javax.net.ssl.SSLSocket
|
||||
* @see SSLSocketImpl
|
||||
*
|
||||
*/
|
||||
abstract class BaseSSLSocketImpl extends SSLSocket {
|
||||
|
||||
|
@ -92,7 +91,7 @@ abstract class BaseSSLSocketImpl extends SSLSocket {
|
|||
"com.sun.net.ssl.requireCloseNotify";
|
||||
|
||||
static final boolean requireCloseNotify =
|
||||
Debug.getBooleanProperty(PROP_NAME, false);
|
||||
Utilities.getBooleanProperty(PROP_NAME, false);
|
||||
|
||||
//
|
||||
// MISC SOCKET METHODS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue