Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: VodafoneUSBModem_bleedingedge2 mbed-rtos mbed-src
cyassllib/cyassl/ctaocrypt/coding.h@1:b211d97b0068, 2013-04-26 (annotated)
- Committer:
- ashleymills
- Date:
- Fri Apr 26 16:59:36 2013 +0000
- Revision:
- 1:b211d97b0068
- Parent:
- 0:e979170e02e7
nothing
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ashleymills | 0:e979170e02e7 | 1 | /* coding.h |
| ashleymills | 0:e979170e02e7 | 2 | * |
| ashleymills | 0:e979170e02e7 | 3 | * Copyright (C) 2006-2012 Sawtooth Consulting Ltd. |
| ashleymills | 0:e979170e02e7 | 4 | * |
| ashleymills | 0:e979170e02e7 | 5 | * This file is part of CyaSSL. |
| ashleymills | 0:e979170e02e7 | 6 | * |
| ashleymills | 0:e979170e02e7 | 7 | * CyaSSL is free software; you can redistribute it and/or modify |
| ashleymills | 0:e979170e02e7 | 8 | * it under the terms of the GNU General Public License as published by |
| ashleymills | 0:e979170e02e7 | 9 | * the Free Software Foundation; either version 2 of the License, or |
| ashleymills | 0:e979170e02e7 | 10 | * (at your option) any later version. |
| ashleymills | 0:e979170e02e7 | 11 | * |
| ashleymills | 0:e979170e02e7 | 12 | * CyaSSL is distributed in the hope that it will be useful, |
| ashleymills | 0:e979170e02e7 | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| ashleymills | 0:e979170e02e7 | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| ashleymills | 0:e979170e02e7 | 15 | * GNU General Public License for more details. |
| ashleymills | 0:e979170e02e7 | 16 | * |
| ashleymills | 0:e979170e02e7 | 17 | * You should have received a copy of the GNU General Public License |
| ashleymills | 0:e979170e02e7 | 18 | * along with this program; if not, write to the Free Software |
| ashleymills | 0:e979170e02e7 | 19 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
| ashleymills | 0:e979170e02e7 | 20 | */ |
| ashleymills | 0:e979170e02e7 | 21 | |
| ashleymills | 0:e979170e02e7 | 22 | |
| ashleymills | 0:e979170e02e7 | 23 | #ifndef CTAO_CRYPT_CODING_H |
| ashleymills | 0:e979170e02e7 | 24 | #define CTAO_CRYPT_CODING_H |
| ashleymills | 0:e979170e02e7 | 25 | |
| ashleymills | 0:e979170e02e7 | 26 | #include <cyassl/ctaocrypt/types.h> |
| ashleymills | 0:e979170e02e7 | 27 | |
| ashleymills | 0:e979170e02e7 | 28 | #ifdef __cplusplus |
| ashleymills | 0:e979170e02e7 | 29 | extern "C" { |
| ashleymills | 0:e979170e02e7 | 30 | #endif |
| ashleymills | 0:e979170e02e7 | 31 | |
| ashleymills | 0:e979170e02e7 | 32 | |
| ashleymills | 0:e979170e02e7 | 33 | /* decode needed by CyaSSL */ |
| ashleymills | 0:e979170e02e7 | 34 | CYASSL_LOCAL int Base64_Decode(const byte* in, word32 inLen, byte* out, |
| ashleymills | 0:e979170e02e7 | 35 | word32* outLen); |
| ashleymills | 0:e979170e02e7 | 36 | |
| ashleymills | 0:e979170e02e7 | 37 | #if defined(OPENSSL_EXTRA) || defined(SESSION_CERTS) || defined(CYASSL_KEY_GEN) || defined(CYASSL_CERT_GEN) || defined(HAVE_WEBSERVER) |
| ashleymills | 0:e979170e02e7 | 38 | /* encode isn't */ |
| ashleymills | 0:e979170e02e7 | 39 | CYASSL_API |
| ashleymills | 0:e979170e02e7 | 40 | int Base64_Encode(const byte* in, word32 inLen, byte* out, |
| ashleymills | 0:e979170e02e7 | 41 | word32* outLen); |
| ashleymills | 0:e979170e02e7 | 42 | CYASSL_LOCAL |
| ashleymills | 0:e979170e02e7 | 43 | int Base16_Decode(const byte* in, word32 inLen, byte* out, word32* outLen); |
| ashleymills | 0:e979170e02e7 | 44 | #endif |
| ashleymills | 0:e979170e02e7 | 45 | |
| ashleymills | 0:e979170e02e7 | 46 | #ifdef __cplusplus |
| ashleymills | 0:e979170e02e7 | 47 | } /* extern "C" */ |
| ashleymills | 0:e979170e02e7 | 48 | #endif |
| ashleymills | 0:e979170e02e7 | 49 | |
| ashleymills | 0:e979170e02e7 | 50 | #endif /* CTAO_CRYPT_CODING_H */ |
| ashleymills | 0:e979170e02e7 | 51 |