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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 PK11_ImportSymKey | 166 PK11_ImportSymKey |
167 PK11_ImportSymKeyWithFlags | 167 PK11_ImportSymKeyWithFlags |
168 PK11_IsLoggedIn | 168 PK11_IsLoggedIn |
169 PK11_IsPresent | 169 PK11_IsPresent |
170 PK11_IVFromParam | 170 PK11_IVFromParam |
171 PK11_KeyGen | 171 PK11_KeyGen |
172 PK11_MapSignKeyType | 172 PK11_MapSignKeyType |
173 PK11_NeedLogin | 173 PK11_NeedLogin |
174 PK11_ParamFromIV | 174 PK11_ParamFromIV |
175 PK11_PBEKeyGen | 175 PK11_PBEKeyGen |
| 176 PK11_PrivDecrypt |
176 PK11_PrivDecryptPKCS1 | 177 PK11_PrivDecryptPKCS1 |
177 PK11_PubDecryptRaw | 178 PK11_PubDecryptRaw |
178 PK11_PubDerive | 179 PK11_PubDerive |
179 PK11_PubDeriveWithKDF | 180 PK11_PubDeriveWithKDF |
| 181 PK11_PubEncrypt |
180 PK11_PubEncryptRaw | 182 PK11_PubEncryptRaw |
181 PK11_PubEncryptPKCS1 | 183 PK11_PubEncryptPKCS1 |
182 PK11_PubUnwrapSymKey | 184 PK11_PubUnwrapSymKey |
183 PK11_PubUnwrapSymKeyWithFlagsPerm | 185 PK11_PubUnwrapSymKeyWithFlagsPerm |
184 PK11_PubWrapSymKey | 186 PK11_PubWrapSymKey |
185 PK11_ReadRawAttribute | 187 PK11_ReadRawAttribute |
186 PK11_ReferenceSlot | 188 PK11_ReferenceSlot |
187 PK11_ReferenceSymKey | 189 PK11_ReferenceSymKey |
188 PK11_RestoreContext | 190 PK11_RestoreContext |
189 PK11_SaveContextAlloc | 191 PK11_SaveContextAlloc |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 SHA256_HashBuf | 291 SHA256_HashBuf |
290 TLS_PRF | 292 TLS_PRF |
291 VFY_Begin | 293 VFY_Begin |
292 VFY_CreateContext | 294 VFY_CreateContext |
293 VFY_CreateContextWithAlgorithmID | 295 VFY_CreateContextWithAlgorithmID |
294 VFY_DestroyContext | 296 VFY_DestroyContext |
295 VFY_End | 297 VFY_End |
296 VFY_Update | 298 VFY_Update |
297 VFY_VerifyDataDirect | 299 VFY_VerifyDataDirect |
298 VFY_VerifyDigestDirect | 300 VFY_VerifyDigestDirect |
OLD | NEW |