CyaSSL 3.0.0
Dependents: HTTPClient-SSL HTTPClient HTTPClient-SSL http_access ... more
cyassl/ctaocrypt/coding.h@0:1239e9b70ca2, 2014-07-12 (annotated)
- Committer:
- wolfSSL
- Date:
- Sat Jul 12 07:18:23 2014 +0000
- Revision:
- 0:1239e9b70ca2
CyaSSL 3.0.0;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wolfSSL | 0:1239e9b70ca2 | 1 | /* coding.h |
wolfSSL | 0:1239e9b70ca2 | 2 | * |
wolfSSL | 0:1239e9b70ca2 | 3 | * Copyright (C) 2006-2014 wolfSSL Inc. |
wolfSSL | 0:1239e9b70ca2 | 4 | * |
wolfSSL | 0:1239e9b70ca2 | 5 | * This file is part of CyaSSL. |
wolfSSL | 0:1239e9b70ca2 | 6 | * |
wolfSSL | 0:1239e9b70ca2 | 7 | * CyaSSL is free software; you can redistribute it and/or modify |
wolfSSL | 0:1239e9b70ca2 | 8 | * it under the terms of the GNU General Public License as published by |
wolfSSL | 0:1239e9b70ca2 | 9 | * the Free Software Foundation; either version 2 of the License, or |
wolfSSL | 0:1239e9b70ca2 | 10 | * (at your option) any later version. |
wolfSSL | 0:1239e9b70ca2 | 11 | * |
wolfSSL | 0:1239e9b70ca2 | 12 | * CyaSSL is distributed in the hope that it will be useful, |
wolfSSL | 0:1239e9b70ca2 | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
wolfSSL | 0:1239e9b70ca2 | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wolfSSL | 0:1239e9b70ca2 | 15 | * GNU General Public License for more details. |
wolfSSL | 0:1239e9b70ca2 | 16 | * |
wolfSSL | 0:1239e9b70ca2 | 17 | * You should have received a copy of the GNU General Public License |
wolfSSL | 0:1239e9b70ca2 | 18 | * along with this program; if not, write to the Free Software |
wolfSSL | 0:1239e9b70ca2 | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
wolfSSL | 0:1239e9b70ca2 | 20 | */ |
wolfSSL | 0:1239e9b70ca2 | 21 | |
wolfSSL | 0:1239e9b70ca2 | 22 | |
wolfSSL | 0:1239e9b70ca2 | 23 | #ifndef CTAO_CRYPT_CODING_H |
wolfSSL | 0:1239e9b70ca2 | 24 | #define CTAO_CRYPT_CODING_H |
wolfSSL | 0:1239e9b70ca2 | 25 | |
wolfSSL | 0:1239e9b70ca2 | 26 | #include <cyassl/ctaocrypt/types.h> |
wolfSSL | 0:1239e9b70ca2 | 27 | |
wolfSSL | 0:1239e9b70ca2 | 28 | #ifdef __cplusplus |
wolfSSL | 0:1239e9b70ca2 | 29 | extern "C" { |
wolfSSL | 0:1239e9b70ca2 | 30 | #endif |
wolfSSL | 0:1239e9b70ca2 | 31 | |
wolfSSL | 0:1239e9b70ca2 | 32 | |
wolfSSL | 0:1239e9b70ca2 | 33 | /* decode needed by CyaSSL */ |
wolfSSL | 0:1239e9b70ca2 | 34 | CYASSL_LOCAL int Base64_Decode(const byte* in, word32 inLen, byte* out, |
wolfSSL | 0:1239e9b70ca2 | 35 | word32* outLen); |
wolfSSL | 0:1239e9b70ca2 | 36 | |
wolfSSL | 0:1239e9b70ca2 | 37 | #if defined(OPENSSL_EXTRA) || defined(SESSION_CERTS) || defined(CYASSL_KEY_GEN) || defined(CYASSL_CERT_GEN) || defined(HAVE_WEBSERVER) |
wolfSSL | 0:1239e9b70ca2 | 38 | /* encode isn't */ |
wolfSSL | 0:1239e9b70ca2 | 39 | CYASSL_API |
wolfSSL | 0:1239e9b70ca2 | 40 | int Base64_Encode(const byte* in, word32 inLen, byte* out, |
wolfSSL | 0:1239e9b70ca2 | 41 | word32* outLen); |
wolfSSL | 0:1239e9b70ca2 | 42 | CYASSL_API |
wolfSSL | 0:1239e9b70ca2 | 43 | int Base64_EncodeEsc(const byte* in, word32 inLen, byte* out, |
wolfSSL | 0:1239e9b70ca2 | 44 | word32* outLen); |
wolfSSL | 0:1239e9b70ca2 | 45 | #endif |
wolfSSL | 0:1239e9b70ca2 | 46 | |
wolfSSL | 0:1239e9b70ca2 | 47 | #if defined(OPENSSL_EXTRA) || defined(HAVE_WEBSERVER) || defined(HAVE_FIPS) |
wolfSSL | 0:1239e9b70ca2 | 48 | CYASSL_API |
wolfSSL | 0:1239e9b70ca2 | 49 | int Base16_Decode(const byte* in, word32 inLen, byte* out, word32* outLen); |
wolfSSL | 0:1239e9b70ca2 | 50 | #endif |
wolfSSL | 0:1239e9b70ca2 | 51 | |
wolfSSL | 0:1239e9b70ca2 | 52 | |
wolfSSL | 0:1239e9b70ca2 | 53 | #ifdef __cplusplus |
wolfSSL | 0:1239e9b70ca2 | 54 | } /* extern "C" */ |
wolfSSL | 0:1239e9b70ca2 | 55 | #endif |
wolfSSL | 0:1239e9b70ca2 | 56 | |
wolfSSL | 0:1239e9b70ca2 | 57 | #endif /* CTAO_CRYPT_CODING_H */ |
wolfSSL | 0:1239e9b70ca2 | 58 | |
wolfSSL | 0:1239e9b70ca2 | 59 |