如何实现服务器名称指示(SNI) [英] How to implement Server Name Indication (SNI)

查看:1837
本文介绍了如何实现服务器名称指示(SNI)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何实现服务器名称指示OpenSSL的(SNI)在C或C ++?

How to implement Server Name Indication(SNI) on OpenSSL in C or C++?

是否有任何现实世界的例子可用?

Are there any real world examples available?

推荐答案

在客户端,使用 SSL_set_tlsext_host_name(SSL,服务器名)启动SSL连接之前。

On the client side, you use SSL_set_tlsext_host_name(ssl, servername) before initiating the SSL connection.

在服务器端,这是一个有点复杂:

On the server side, it's a little more complicated:


  • 设置了一个附加的 SSL_CTX()为每个不同的证书;

  • 一个服务器回调添加到每个 SSL_CTX()使用 SSL_CTX_set_tlsext_servername_callback();

  • 在回调,检索与客户端提供的服务器名SSL_get_servername(SSL,TLSEXT_NAMETYPE_host_name)。弄清楚 SSL_CTX 的权利去与该主机名,那么 SSL 对象切换到 SSL_CTX SSL_set_SSL_CTX()

  • Set up an additional SSL_CTX() for each different certificate;
  • Add a servername callback to each SSL_CTX() using SSL_CTX_set_tlsext_servername_callback();
  • In the callback, retrieve the client-supplied servername with SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name). Figure out the right SSL_CTX to go with that host name, then switch the SSL object to that SSL_CTX with SSL_set_SSL_CTX().

s_client.c s_server.c 应用程序/ OpenSSL的源代码发布的目录实现这个功能,所以他们是一个很好的资源,看看它应该怎么做。

The s_client.c and s_server.c files in the apps/ directory of the OpenSSL source distribution implement this functionality, so they're a good resource to see how it should be done.

这篇关于如何实现服务器名称指示(SNI)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆