本文整理汇总了Java中io.netty.handler.ssl.SslContext.newHandler方法的典型用法代码示例。如果您正苦于以下问题:Java SslContext.newHandler方法的具体用法?Java SslContext.newHandler怎么用?Java SslContext.newHandler使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类io.netty.handler.ssl.SslContext
的用法示例。
在下文中一共展示了SslContext.newHandler方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSslHandler
import io.netty.handler.ssl.SslContext; //导入方法依赖的package包/类
/**
* Return a new eventual {@link SslHandler}, optionally with SNI activated
*
* @param allocator {@link ByteBufAllocator} to allocate for packet storage
* @param sniInfo {@link Tuple2} with hostname and port for SNI (any null will skip SNI).
* @return a new eventual {@link SslHandler} with SNI activated
*/
public final SslHandler getSslHandler(ByteBufAllocator allocator,
Tuple2<String, Integer> sniInfo) {
SslContext sslContext =
this.sslContext == null ? defaultSslContext() : this.sslContext;
if (sslContext == null) {
return null;
}
Objects.requireNonNull(allocator, "allocator");
SslHandler sslHandler;
if (sniInfo != null && sniInfo.getT1() != null && sniInfo.getT2() != null) {
sslHandler = sslContext.newHandler(allocator, sniInfo.getT1(), sniInfo.getT2());
}
else {
sslHandler = sslContext.newHandler(allocator);
}
sslHandler.setHandshakeTimeoutMillis(sslHandshakeTimeoutMillis);
sslHandler.setCloseNotifyFlushTimeoutMillis(sslCloseNotifyFlushTimeoutMillis);
sslHandler.setCloseNotifyReadTimeoutMillis(sslCloseNotifyReadTimeoutMillis);
return sslHandler;
}
示例2: build
import io.netty.handler.ssl.SslContext; //导入方法依赖的package包/类
public SslHandler build(ByteBufAllocator bufferAllocator) throws SSLException {
SslContextBuilder builder = SslContextBuilder.forServer(sslCertificateFile, sslKeyFile, passPhrase);
builder.ciphers(Arrays.asList(ciphers));
if(requireClientAuth()) {
logger.debug("Certificate Authorities: " + certificateAuthorities);
builder.trustManager(new File(certificateAuthorities));
}
SslContext context = builder.build();
SslHandler sslHandler = context.newHandler(bufferAllocator);
SSLEngine engine = sslHandler.engine();
engine.setEnabledProtocols(protocols);
if(requireClientAuth()) {
engine.setUseClientMode(false);
engine.setNeedClientAuth(true);
}
return sslHandler;
}