OLD | NEW |
1 /* | 1 /* |
2 * arcfive.c - stubs for RC5 - NOT a working implementation! | 2 * arcfive.c - stubs for RC5 - NOT a working implementation! |
3 * | 3 * |
4 * This Source Code Form is subject to the terms of the Mozilla Public | 4 * This Source Code Form is subject to the terms of the Mozilla Public |
5 * License, v. 2.0. If a copy of the MPL was not distributed with this | 5 * License, v. 2.0. If a copy of the MPL was not distributed with this |
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
7 /* $Id$ */ | |
8 | 7 |
9 #ifdef FREEBL_NO_DEPEND | 8 #ifdef FREEBL_NO_DEPEND |
10 #include "stubs.h" | 9 #include "stubs.h" |
11 #endif | 10 #endif |
12 | 11 |
13 #include "blapi.h" | 12 #include "blapi.h" |
14 #include "prerror.h" | 13 #include "prerror.h" |
15 | 14 |
16 /******************************************/ | 15 /******************************************/ |
17 /* | 16 /* |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 */ | 79 */ |
81 SECStatus | 80 SECStatus |
82 RC5_Decrypt(RC5Context *cx, unsigned char *output, unsigned int *outputLen, | 81 RC5_Decrypt(RC5Context *cx, unsigned char *output, unsigned int *outputLen, |
83 unsigned int maxOutputLen, | 82 unsigned int maxOutputLen, |
84 const unsigned char *input, unsigned int inputLen) | 83 const unsigned char *input, unsigned int inputLen) |
85 { | 84 { |
86 PORT_SetError(PR_NOT_IMPLEMENTED_ERROR); | 85 PORT_SetError(PR_NOT_IMPLEMENTED_ERROR); |
87 return SECFailure; | 86 return SECFailure; |
88 } | 87 } |
89 | 88 |
OLD | NEW |