当前位置: 首页>>代码示例>>Java>>正文


Java SSLSocket.setNeedClientAuth方法代码示例

本文整理汇总了Java中javax.net.ssl.SSLSocket.setNeedClientAuth方法的典型用法代码示例。如果您正苦于以下问题:Java SSLSocket.setNeedClientAuth方法的具体用法?Java SSLSocket.setNeedClientAuth怎么用?Java SSLSocket.setNeedClientAuth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.net.ssl.SSLSocket的用法示例。


在下文中一共展示了SSLSocket.setNeedClientAuth方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: buildServerSslSocketFactory

import javax.net.ssl.SSLSocket; //导入方法依赖的package包/类
public SSLSocketFactory buildServerSslSocketFactory(final ClientAuth clientAuth) {
  SslClient serverSslClient = new SslClient.Builder()
      .addTrustedCertificate(serverRootCa.certificate)
      .addTrustedCertificate(clientRootCa.certificate)
      .certificateChain(serverCert, serverIntermediateCa)
      .build();

  return new DelegatingSSLSocketFactory(serverSslClient.socketFactory) {
    @Override protected SSLSocket configureSocket(SSLSocket sslSocket) throws IOException {
      if (clientAuth == ClientAuth.NEEDS) {
        sslSocket.setNeedClientAuth(true);
      } else if (clientAuth == ClientAuth.WANTS) {
        sslSocket.setWantClientAuth(true);
      }

      return super.configureSocket(sslSocket);
    }
  };
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:20,代码来源:ClientAuthTest.java

示例2: createServerSocket

import javax.net.ssl.SSLSocket; //导入方法依赖的package包/类
/**
 * <p>Creates a server socket that accepts SSL connections
 * configured according to this factory's SSL socket configuration
 * parameters.</p>
 */
public ServerSocket createServerSocket(int port) throws IOException {
    final SSLSocketFactory sslSocketFactory =
            context == null ?
                getDefaultSSLSocketFactory() : context.getSocketFactory();
    return new ServerSocket(port) {
        public Socket accept() throws IOException {
            Socket socket = super.accept();
            SSLSocket sslSocket = (SSLSocket) sslSocketFactory.createSocket(
                    socket, socket.getInetAddress().getHostName(),
                    socket.getPort(), true);
            sslSocket.setUseClientMode(false);
            if (enabledCipherSuites != null) {
                sslSocket.setEnabledCipherSuites(enabledCipherSuites);
            }
            if (enabledProtocols != null) {
                sslSocket.setEnabledProtocols(enabledProtocols);
            }
            sslSocket.setNeedClientAuth(needClientAuth);
            return sslSocket;
        }
    };
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:28,代码来源:SslRMIServerSocketFactory.java

示例3: accept

import javax.net.ssl.SSLSocket; //导入方法依赖的package包/类
@Override
public Socket accept() throws IOException {
    final SSLSocketFactory sslSocketFactory =
            context == null ?
                getDefaultSSLSocketFactory() : context.getSocketFactory();
    Socket socket = super.accept();
    SSLSocket sslSocket = (SSLSocket) sslSocketFactory.createSocket(
            socket, socket.getInetAddress().getHostName(),
            socket.getPort(), true);
    sslSocket.setUseClientMode(false);
    if (enabledCipherSuites != null) {
        sslSocket.setEnabledCipherSuites(enabledCipherSuites);
    }
    if (enabledProtocols != null) {
        sslSocket.setEnabledProtocols(enabledProtocols);
    }
    sslSocket.setNeedClientAuth(needClientAuth);
    return sslSocket;
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:20,代码来源:ConnectorBootstrap.java

示例4: sslNegotiation

import javax.net.ssl.SSLSocket; //导入方法依赖的package包/类
/**
 * SSL/TLS negotiation. Acquires an SSL socket of a control
 * connection and carries out handshake processing.
 * @throws java.io.IOException If server negotiation fails
 */
protected void sslNegotiation() throws IOException {
    plainSocket = _socket_;
    initSslContext();

    SSLSocketFactory ssf = context.getSocketFactory();
    String ip = _socket_.getInetAddress().getHostAddress();
    int port = _socket_.getPort();
    SSLSocket socket =
        (SSLSocket) ssf.createSocket(_socket_, ip, port, false);
    socket.setEnableSessionCreation(isCreation);
    socket.setUseClientMode(isClientMode);
    // server mode
    if (!isClientMode) {
        socket.setNeedClientAuth(isNeedClientAuth);
        socket.setWantClientAuth(isWantClientAuth);
    }

    if (protocols != null) {
        socket.setEnabledProtocols(protocols);
    }
    if (suites != null) {
        socket.setEnabledCipherSuites(suites);
    }
    socket.startHandshake();

    _socket_ = socket;
    _controlInput_ = new BufferedReader(new InputStreamReader(
            socket .getInputStream(), getControlEncoding()));
    _controlOutput_ = new BufferedWriter(new OutputStreamWriter(
            socket.getOutputStream(), getControlEncoding()));
}
 
开发者ID:archos-sa,项目名称:aos-FileCoreLibrary,代码行数:37,代码来源:FTPSClient.java

示例5: _openDataConnection_

import javax.net.ssl.SSLSocket; //导入方法依赖的package包/类
/**
 * Returns a socket of the data connection.
 * Wrapped as an {@link javax.net.ssl.SSLSocket}, which carries out handshake processing.
 * @param command The textual representation of the FTP command to send.
 * @param arg The arguments to the FTP command.
 * If this parameter is set to null, then the command is sent with
 * no arguments.
 * @return corresponding to the established data connection.
 * Null is returned if an FTP protocol error is reported at any point
 * during the establishment and initialization of the connection.
 * @throws java.io.IOException If there is any problem with the connection.
 * @see org.apache.commons.net.ftp.FTPClient#_openDataConnection_(int, String)
 * @since 3.2
 */
@Override
protected Socket _openDataConnection_(String command, String arg)
        throws IOException {
    Socket socket = super._openDataConnection_(command, arg);
    _prepareDataSocket_(socket);
    if (socket instanceof SSLSocket) {
        SSLSocket sslSocket = (SSLSocket)socket;

        sslSocket.setUseClientMode(isClientMode);
        sslSocket.setEnableSessionCreation(isCreation);

        // server mode
        if (!isClientMode) {
            sslSocket.setNeedClientAuth(isNeedClientAuth);
            sslSocket.setWantClientAuth(isWantClientAuth);
        }
        if (suites != null) {
            sslSocket.setEnabledCipherSuites(suites);
        }
        if (protocols != null) {
            sslSocket.setEnabledProtocols(protocols);
        }
        sslSocket.startHandshake();
    }

    return socket;
}
 
开发者ID:archos-sa,项目名称:aos-FileCoreLibrary,代码行数:42,代码来源:FTPSClient.java

示例6: TLSMessageChannel

import javax.net.ssl.SSLSocket; //导入方法依赖的package包/类
/**
 * Constructor - gets called from the SIPStack class with a socket on
 * accepting a new client. All the processing of the message is done here
 * with the sipStack being freed up to handle new connections. The sock
 * input is the socket that is returned from the accept. Global data that is
 * shared by all threads is accessible in the Server structure.
 *
 * @param sock
 *            Socket from which to read and write messages. The socket is
 *            already connected (was created as a result of an accept).
 *
 * @param sipStack
 *            Ptr to SIP Stack
 *
 * @param msgProcessor
 *            -- the message processor that created us.
 */

protected TLSMessageChannel(Socket sock, SIPTransactionStack sipStack,
        TLSMessageProcessor msgProcessor, String threadName) throws IOException {
	
	super(sipStack);
    if (logger.isLoggingEnabled(LogWriter.TRACE_DEBUG)) {
        logger.logDebug(
                "creating new TLSMessageChannel (incoming)");
        logger.logStackTrace();
    }

    mySock = (SSLSocket) sock;
    if (sock instanceof SSLSocket) {
        SSLSocket sslSock = (SSLSocket) sock;
        if(sipStack.getClientAuth() != ClientAuthType.Want && sipStack.getClientAuth() != ClientAuthType.Disabled && sipStack.getClientAuth() != ClientAuthType.DisabledAll) {
            sslSock.setNeedClientAuth(true);
        }
        if(logger.isLoggingEnabled(StackLogger.TRACE_DEBUG)) {
            logger.logDebug("SSLServerSocket need client auth " + sslSock.getNeedClientAuth());
        }
    }

    peerAddress = mySock.getInetAddress();
    myAddress = msgProcessor.getIpAddress().getHostAddress();
    myClientInputStream = mySock.getInputStream();

    mythread = new Thread(this);
    mythread.setDaemon(true);
    mythread.setName(threadName);

    this.myPort = msgProcessor.getPort();
    this.peerPort = mySock.getPort();
    this.key = MessageChannel.getKey(peerAddress, peerPort, "TLS");
    // Bug report by Vishwashanti Raj Kadiayl
    super.messageProcessor = msgProcessor;
    // Can drop this after response is sent potentially.
    mythread.start();
}
 
开发者ID:YunlongYang,项目名称:LightSIP,代码行数:56,代码来源:TLSMessageChannel.java

示例7: createSSLClientSocket

import javax.net.ssl.SSLSocket; //导入方法依赖的package包/类
/**
 * Used for peering tls connection.
 * Prepare socket for handshake negotiation.
 * 
 * @param socket
 * @return
 * @throws IOException
 */
public static SSLSocket createSSLClientSocket(Socket socket) throws IOException{
	//autoClose - close the underlying socket when this socket is closed.
	SSLSocket sslsocket = (SSLSocket) sslContext.getSocketFactory().createSocket(socket, null, true);
       sslsocket.setUseClientMode(true);//client
       sslsocket.setNeedClientAuth(true);
       return sslsocket;
}
 
开发者ID:Anoncheg1,项目名称:dibd,代码行数:16,代码来源:TLS.java


注:本文中的javax.net.ssl.SSLSocket.setNeedClientAuth方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。