Package com.wolfssl.provider.jsse
Class WolfSSLCustomUser
- java.lang.Object
-
- com.wolfssl.provider.jsse.WolfSSLCustomUser
-
public class WolfSSLCustomUser extends java.lang.Object
Base class is intended to give some customizing points. Currently it is limited to be invoked from WolfSSLContext.Create- Version:
- 1.0, August 2013
- Author:
- wolfSSL
-
-
Constructor Summary
Constructors Constructor Description WolfSSLCustomUser()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WolfSSLCustomUser
GetCtxAttributes(com.wolfssl.provider.jsse.WolfSSLAuthStore.TLS_VERSION version, java.lang.String[] list)
callback for getting Context attributes before creating context, TLS protocol and Cipher list WARNING: inappropriate code or use of this callback may cause serious security issue.
-
-
-
Method Detail
-
GetCtxAttributes
public static WolfSSLCustomUser GetCtxAttributes(com.wolfssl.provider.jsse.WolfSSLAuthStore.TLS_VERSION version, java.lang.String[] list)
callback for getting Context attributes before creating context, TLS protocol and Cipher list WARNING: inappropriate code or use of this callback may cause serious security issue.- Parameters:
version
- default version of TLS for refernce.list
- default cipher list for refernce.- Returns:
- version: TLS protocol version to the context. The value has to be one compiled in. list: Cipher list allowed to the context. list has to contain subset of default cipher list. If it is null, default list is applied.
-
-