Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
development:tls-requirements [2006/11/28 16:26] – 83.136.33.3 | development:tls-requirements [2007/12/19 08:32] (current) – 83.136.33.3 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== TLS requirements ===== | ||
+ | |||
+ | This site is for discussion of requirements for a new TLS implementation for openser (vs. the one inside openser 1.0, 1.1, 1.2 and 1.3). | ||
+ | |||
+ | * non-blocking (TLS handshake and other activities must not block openser) | ||
+ | |||
+ | * TLS reload. Reloading the TLS configuration while openser is running (e.g for loading new certificates, | ||
+ | |||
+ | * TLS shutdown. Manually shutdown TTLS connections. Maybe one command to shut down all connections, | ||
+ | |||
+ | * Marking TCP/TLS connection in openser.cfg. | ||
+ | < | ||
+ | if (proto==TLS) and (from==myself) { | ||
+ | setTcpFlag(3); | ||
+ | } | ||
+ | </ | ||
+ | Setting a flag for certain TLS connections - e.g. to differ between TLS connections from SIP clients (local users) and from Proxy-Proxy TLS connections. Then TLS shutdown for example can be used to shut down all proxy-proxy TLS connections, | ||
+ | |||
+ | * connection reuse/no connection reuse when connection to some socket but other domain (see SIP outbound draft ) | ||
+ | |||
+ | * certificate revocation lists. " | ||
+ | |||
+ | * flexible configuration framework: outside openser.cfg, | ||
+ | - allow specification of TLS domains (CA+key+cert) | ||
+ | - assign these TLS domains (with specification of validation requirement, | ||
+ | * local sockets (incoming) | ||
+ | * remote sockets (outgoing) | ||
+ | * string, for name based TLS-client domains (outgoing) | ||
+ | |||
+ | * nice2have: TLS extensions: Server Name Indication+Trusted CA Indication on both, the server and client side. | ||
+ | |||
+ | * Maybe hardware support (openssl crypto engine support)? | ||
+ | |||
+ | * Review the TLS configuration of other applications to do not miss something important (e.g. http:// | ||
+ | |||