OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifdef DEBUG | |
6 static const char CVS_ID[] = "@(#) $RCSfile$ $Revision$ $Date$"; | |
7 #endif /* DEBUG */ | |
8 | |
9 #ifndef NSSPKI_H | 5 #ifndef NSSPKI_H |
10 #include "nsspki.h" | 6 #include "nsspki.h" |
11 #endif /* NSSPKI_H */ | 7 #endif /* NSSPKI_H */ |
12 | 8 |
13 #ifndef BASE_H | 9 #ifndef BASE_H |
14 #include "base.h" | 10 #include "base.h" |
15 #endif /* BASE_H */ | 11 #endif /* BASE_H */ |
16 | 12 |
17 extern const NSSError NSS_ERROR_NOT_FOUND; | 13 extern const NSSError NSS_ERROR_NOT_FOUND; |
18 | 14 |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 NSS_IMPLEMENT NSSPrivateKey * | 389 NSS_IMPLEMENT NSSPrivateKey * |
394 NSSPublicKey_FindPrivateKey ( | 390 NSSPublicKey_FindPrivateKey ( |
395 NSSPublicKey *bk, | 391 NSSPublicKey *bk, |
396 NSSCallback *uhh | 392 NSSCallback *uhh |
397 ) | 393 ) |
398 { | 394 { |
399 nss_SetError(NSS_ERROR_NOT_FOUND); | 395 nss_SetError(NSS_ERROR_NOT_FOUND); |
400 return NULL; | 396 return NULL; |
401 } | 397 } |
402 | 398 |
OLD | NEW |