diff options
author | Péter Dimitrov <[email protected]> | 2018-06-04 17:02:20 +0200 |
---|---|---|
committer | Péter Dimitrov <[email protected]> | 2018-06-11 16:59:56 +0200 |
commit | bb960a900d697c636947c788ff89306639c904a5 (patch) | |
tree | 1dbce4d61fab10fc981002aaa072b2774887da66 /lib/ssl/doc | |
parent | cc6724f7c42dd92fd1d6a02248853203aaad73b6 (diff) | |
download | otp-bb960a900d697c636947c788ff89306639c904a5.tar.gz otp-bb960a900d697c636947c788ff89306639c904a5.tar.bz2 otp-bb960a900d697c636947c788ff89306639c904a5.zip |
ssl: Add new API function suite_to_str/1
Add new API function for converting cipher suite maps
to their textual representation.
Change-Id: I43681930b38e0f3bdb4dfccbf9e8895aa2d6a281
Diffstat (limited to 'lib/ssl/doc')
-rw-r--r-- | lib/ssl/doc/src/ssl.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ssl/doc/src/ssl.xml b/lib/ssl/doc/src/ssl.xml index 029f29cdb3..e88407dd6d 100644 --- a/lib/ssl/doc/src/ssl.xml +++ b/lib/ssl/doc/src/ssl.xml @@ -1492,6 +1492,18 @@ fun(srp, Username :: string(), UserState :: term()) -> </func> <func> + <name>suite_to_str(CipherSuite) -> String</name> + <fsummary>Returns the string representation of a cipher suite.</fsummary> + <type> + <v>CipherSuite = erl_cipher_suite()</v> + <v>String = string()</v> + </type> + <desc> + <p>Returns the string representation of a cipher suite.</p> + </desc> + </func> + + <func> <name>transport_accept(ListenSocket) -></name> <name>transport_accept(ListenSocket, Timeout) -> {ok, NewSocket} | {error, Reason}</name> |