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


Java SslContext.newHandler方法代码示例

本文整理汇总了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;
}
 
开发者ID:reactor,项目名称:reactor-netty,代码行数:30,代码来源:NettyOptions.java

示例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;
}
 
开发者ID:DTStack,项目名称:jlogstash-input-plugin,代码行数:25,代码来源:SslSimpleBuilder.java


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