OLD | NEW |
1 ; Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 ; Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 ; Use of this source code is governed by a BSD-style license that can be | 2 ; Use of this source code is governed by a BSD-style license that can be |
3 ; found in the LICENSE file. | 3 ; found in the LICENSE file. |
4 | 4 |
5 LIBRARY CRSSL | 5 LIBRARY CRSSL |
6 EXPORTS | 6 EXPORTS |
7 | 7 |
8 NSS_CmpCertChainWCANames | 8 NSS_CmpCertChainWCANames |
9 NSS_FindCertKEAType | 9 NSS_FindCertKEAType |
10 NSS_GetClientAuthData | 10 NSS_GetClientAuthData |
(...skipping 13 matching lines...) Expand all Loading... |
24 SSL_GetClientAuthDataHook | 24 SSL_GetClientAuthDataHook |
25 SSL_GetSessionID | 25 SSL_GetSessionID |
26 SSL_HandshakeCallback | 26 SSL_HandshakeCallback |
27 SSL_ImportFD | 27 SSL_ImportFD |
28 SSL_InvalidateSession | 28 SSL_InvalidateSession |
29 SSL_OptionGet | 29 SSL_OptionGet |
30 SSL_OptionGetDefault | 30 SSL_OptionGetDefault |
31 SSL_OptionSet | 31 SSL_OptionSet |
32 SSL_OptionSetDefault | 32 SSL_OptionSetDefault |
33 SSL_PeerCertificate | 33 SSL_PeerCertificate |
| 34 SSL_PeerStapledOCSPResponses |
34 SSL_ResetHandshake | 35 SSL_ResetHandshake |
35 SSL_SetSockPeerID | 36 SSL_SetSockPeerID |
36 SSL_SetURL | 37 SSL_SetURL |
37 SSL_GetChannelInfo | 38 SSL_GetChannelInfo |
38 SSL_GetCipherSuiteInfo | 39 SSL_GetCipherSuiteInfo |
39 SSL_ShutdownServerSessionIDCache | 40 SSL_ShutdownServerSessionIDCache |
40 SSL_GetImplementedCiphers | 41 SSL_GetImplementedCiphers |
41 SSL_GetNumImplementedCiphers | 42 SSL_GetNumImplementedCiphers |
42 SSL_HandshakeNegotiatedExtension | 43 SSL_HandshakeNegotiatedExtension |
43 SSL_SetNextProtoCallback | 44 SSL_SetNextProtoCallback |
44 DTLS_GetHandshakeTimeout | 45 DTLS_GetHandshakeTimeout |
45 DTLS_ImportFD | 46 DTLS_ImportFD |
46 SSL_ExportKeyingMaterial | 47 SSL_ExportKeyingMaterial |
47 SSL_VersionRangeSet | 48 SSL_VersionRangeSet |
48 SSL_GetSRTPCipher | 49 SSL_GetSRTPCipher |
49 SSL_SetSRTPCiphers | 50 SSL_SetSRTPCiphers |
50 | 51 |
51 ; Chromium patches | 52 ; Chromium patches |
52 SSL_PeerCertificateChain | 53 SSL_PeerCertificateChain |
53 SSL_SetClientChannelIDCallback | 54 SSL_SetClientChannelIDCallback |
54 SSL_GetPlatformClientAuthDataHook | 55 SSL_GetPlatformClientAuthDataHook |
55 SSL_HandshakeResumedSession | 56 SSL_HandshakeResumedSession |
56 SSL_GetStapledOCSPResponse | |
57 SSL_RestartHandshakeAfterChannelIDReq | 57 SSL_RestartHandshakeAfterChannelIDReq |
58 SSL_GetChannelBinding | 58 SSL_GetChannelBinding |
OLD | NEW |