| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Platform specific crypto wrappers | 2 * Platform specific crypto wrappers |
| 3 * | 3 * |
| 4 * ***** BEGIN LICENSE BLOCK ***** | 4 * ***** BEGIN LICENSE BLOCK ***** |
| 5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 6 * | 6 * |
| 7 * The contents of this file are subject to the Mozilla Public License Version | 7 * The contents of this file are subject to the Mozilla Public License Version |
| 8 * 1.1 (the "License"); you may not use this file except in compliance with | 8 * 1.1 (the "License"); you may not use this file except in compliance with |
| 9 * the License. You may obtain a copy of the License at | 9 * the License. You may obtain a copy of the License at |
| 10 * http://www.mozilla.org/MPL/ | 10 * http://www.mozilla.org/MPL/ |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 SECStatus | 552 SECStatus |
| 553 ssl3_PlatformSignHashes(SSL3Hashes *hash, PlatformKey key, SECItem *buf, | 553 ssl3_PlatformSignHashes(SSL3Hashes *hash, PlatformKey key, SECItem *buf, |
| 554 PRBool isTLS) | 554 PRBool isTLS) |
| 555 { | 555 { |
| 556 PORT_SetError(PR_NOT_IMPLEMENTED_ERROR); | 556 PORT_SetError(PR_NOT_IMPLEMENTED_ERROR); |
| 557 return SECFailure; | 557 return SECFailure; |
| 558 } | 558 } |
| 559 #endif | 559 #endif |
| 560 | 560 |
| 561 #endif /* NSS_PLATFORM_CLIENT_AUTH */ | 561 #endif /* NSS_PLATFORM_CLIENT_AUTH */ |
| OLD | NEW |