OLD | NEW |
1 | 1 |
2 /* This Source Code Form is subject to the terms of the Mozilla Public | 2 /* This Source Code Form is subject to the terms of the Mozilla Public |
3 * License, v. 2.0. If a copy of the MPL was not distributed with this | 3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
5 /* $Id$ */ | |
6 | 5 |
7 #ifdef FREEBL_NO_DEPEND | 6 #ifdef FREEBL_NO_DEPEND |
8 #include "stubs.h" | 7 #include "stubs.h" |
9 #endif | 8 #endif |
10 | 9 |
11 #include "shsign.h" | 10 #include "shsign.h" |
12 #include "prlink.h" | 11 #include "prlink.h" |
13 #include "prio.h" | 12 #include "prio.h" |
14 #include "blapi.h" | 13 #include "blapi.h" |
15 #include "seccomon.h" | 14 #include "seccomon.h" |
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 { | 516 { |
518 if (name == NULL) { | 517 if (name == NULL) { |
519 /* | 518 /* |
520 * If name is NULL, freebl is statically linked into softoken. | 519 * If name is NULL, freebl is statically linked into softoken. |
521 * softoken will call BLAPI_SHVerify next to verify itself. | 520 * softoken will call BLAPI_SHVerify next to verify itself. |
522 */ | 521 */ |
523 return PR_TRUE; | 522 return PR_TRUE; |
524 } | 523 } |
525 return BLAPI_SHVerify(name, (PRFuncPtr) decodeInt); | 524 return BLAPI_SHVerify(name, (PRFuncPtr) decodeInt); |
526 } | 525 } |
OLD | NEW |