OLD | NEW |
1 ; Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 ; Copyright (c) 2012 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 CRNSS | 5 LIBRARY CRNSS |
6 EXPORTS | 6 EXPORTS |
7 | 7 |
8 __PK11_CreateContextByRawKey | 8 __PK11_CreateContextByRawKey |
9 AES_Decrypt | 9 AES_Decrypt |
10 AES_DestroyContext | 10 AES_DestroyContext |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 NSS_PutEnv_Util | 92 NSS_PutEnv_Util |
93 NSS_RegisterShutdown | 93 NSS_RegisterShutdown |
94 NSS_SecureMemcmp | 94 NSS_SecureMemcmp |
95 NSS_SetAlgorithmPolicy | 95 NSS_SetAlgorithmPolicy |
96 NSS_VersionCheck | 96 NSS_VersionCheck |
97 PK11_CipherOp | 97 PK11_CipherOp |
98 PK11_CopyTokenPrivKeyToSessionPrivKey | 98 PK11_CopyTokenPrivKeyToSessionPrivKey |
99 PK11_CreateContextBySymKey | 99 PK11_CreateContextBySymKey |
100 PK11_CreateDigestContext | 100 PK11_CreateDigestContext |
101 PK11_CreatePBEV2AlgorithmID | 101 PK11_CreatePBEV2AlgorithmID |
| 102 PK11_DecryptWithSymKey |
102 PK11_Derive | 103 PK11_Derive |
103 PK11_DeriveWithFlags | 104 PK11_DeriveWithFlags |
104 PK11_DestroyContext | 105 PK11_DestroyContext |
105 PK11_DigestBegin | 106 PK11_DigestBegin |
106 PK11_DigestFinal | 107 PK11_DigestFinal |
107 PK11_DigestKey | 108 PK11_DigestKey |
108 PK11_DigestOp | 109 PK11_DigestOp |
109 PK11_DoesMechanism | 110 PK11_DoesMechanism |
| 111 PK11_EncryptWithSymKey |
110 PK11_ExportEncryptedPrivKeyInfo | 112 PK11_ExportEncryptedPrivKeyInfo |
111 PK11_ExtractKeyValue | 113 PK11_ExtractKeyValue |
112 PK11_Finalize | 114 PK11_Finalize |
113 PK11_FindKeyByAnyCert | 115 PK11_FindKeyByAnyCert |
114 PK11_FreeSlot | 116 PK11_FreeSlot |
115 PK11_FreeSymKey | 117 PK11_FreeSymKey |
116 PK11_GenerateKeyPair | 118 PK11_GenerateKeyPair |
117 PK11_GenerateRandom | 119 PK11_GenerateRandom |
118 PK11_GetBestKeyLength | 120 PK11_GetBestKeyLength |
119 PK11_GetBestSlot | 121 PK11_GetBestSlot |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 SHA1_NewContext | 250 SHA1_NewContext |
249 SHA1_Update | 251 SHA1_Update |
250 SHA256_HashBuf | 252 SHA256_HashBuf |
251 TLS_PRF | 253 TLS_PRF |
252 VFY_Begin | 254 VFY_Begin |
253 VFY_CreateContext | 255 VFY_CreateContext |
254 VFY_CreateContextWithAlgorithmID | 256 VFY_CreateContextWithAlgorithmID |
255 VFY_DestroyContext | 257 VFY_DestroyContext |
256 VFY_End | 258 VFY_End |
257 VFY_Update | 259 VFY_Update |
OLD | NEW |