CyaSSL 3.0.0

Dependents:   HTTPClient-SSL HTTPClient HTTPClient-SSL http_access ... more

Committer:
wolfSSL
Date:
Wed Dec 03 05:24:18 2014 +0000
Revision:
3:64d4f7cb83d5
Parent:
0:1239e9b70ca2
added IGNORE_KEY_EXTENSIONS

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 0:1239e9b70ca2 1 /* des3.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 NO_DES3
wolfSSL 0:1239e9b70ca2 24
wolfSSL 0:1239e9b70ca2 25 #ifndef CTAO_CRYPT_DES3_H
wolfSSL 0:1239e9b70ca2 26 #define CTAO_CRYPT_DES3_H
wolfSSL 0:1239e9b70ca2 27
wolfSSL 0:1239e9b70ca2 28
wolfSSL 0:1239e9b70ca2 29 #include <cyassl/ctaocrypt/types.h>
wolfSSL 0:1239e9b70ca2 30
wolfSSL 0:1239e9b70ca2 31
wolfSSL 0:1239e9b70ca2 32 #ifdef __cplusplus
wolfSSL 0:1239e9b70ca2 33 extern "C" {
wolfSSL 0:1239e9b70ca2 34 #endif
wolfSSL 0:1239e9b70ca2 35
wolfSSL 0:1239e9b70ca2 36 #define CYASSL_3DES_CAVIUM_MAGIC 0xBEEF0003
wolfSSL 0:1239e9b70ca2 37
wolfSSL 0:1239e9b70ca2 38 enum {
wolfSSL 0:1239e9b70ca2 39 DES_ENC_TYPE = 2, /* cipher unique type */
wolfSSL 0:1239e9b70ca2 40 DES3_ENC_TYPE = 3, /* cipher unique type */
wolfSSL 0:1239e9b70ca2 41 DES_BLOCK_SIZE = 8,
wolfSSL 0:1239e9b70ca2 42 DES_KS_SIZE = 32,
wolfSSL 0:1239e9b70ca2 43
wolfSSL 0:1239e9b70ca2 44 DES_ENCRYPTION = 0,
wolfSSL 0:1239e9b70ca2 45 DES_DECRYPTION = 1
wolfSSL 0:1239e9b70ca2 46 };
wolfSSL 0:1239e9b70ca2 47
wolfSSL 0:1239e9b70ca2 48 #define DES_IVLEN 8
wolfSSL 0:1239e9b70ca2 49 #define DES_KEYLEN 8
wolfSSL 0:1239e9b70ca2 50 #define DES3_IVLEN 8
wolfSSL 0:1239e9b70ca2 51 #define DES3_KEYLEN 24
wolfSSL 0:1239e9b70ca2 52
wolfSSL 0:1239e9b70ca2 53
wolfSSL 0:1239e9b70ca2 54 #ifdef STM32F2_CRYPTO
wolfSSL 0:1239e9b70ca2 55 enum {
wolfSSL 0:1239e9b70ca2 56 DES_CBC = 0,
wolfSSL 0:1239e9b70ca2 57 DES_ECB = 1
wolfSSL 0:1239e9b70ca2 58 };
wolfSSL 0:1239e9b70ca2 59 #endif
wolfSSL 0:1239e9b70ca2 60
wolfSSL 0:1239e9b70ca2 61
wolfSSL 0:1239e9b70ca2 62 /* DES encryption and decryption */
wolfSSL 0:1239e9b70ca2 63 typedef struct Des {
wolfSSL 0:1239e9b70ca2 64 word32 reg[DES_BLOCK_SIZE / sizeof(word32)]; /* for CBC mode */
wolfSSL 0:1239e9b70ca2 65 word32 tmp[DES_BLOCK_SIZE / sizeof(word32)]; /* same */
wolfSSL 0:1239e9b70ca2 66 #ifdef HAVE_COLDFIRE_SEC
wolfSSL 0:1239e9b70ca2 67 byte keylen ; /* for Coldfire SEC */
wolfSSL 0:1239e9b70ca2 68 byte ivlen ; /* for Coldfire SEC */
wolfSSL 0:1239e9b70ca2 69 byte iv[DES3_IVLEN]; /* for Coldfire SEC */
wolfSSL 0:1239e9b70ca2 70 #endif
wolfSSL 0:1239e9b70ca2 71 word32 key[DES_KS_SIZE];
wolfSSL 0:1239e9b70ca2 72 } Des;
wolfSSL 0:1239e9b70ca2 73
wolfSSL 0:1239e9b70ca2 74
wolfSSL 0:1239e9b70ca2 75 /* DES3 encryption and decryption */
wolfSSL 0:1239e9b70ca2 76 typedef struct Des3 {
wolfSSL 0:1239e9b70ca2 77 #ifdef HAVE_COLDFIRE_SEC
wolfSSL 0:1239e9b70ca2 78 byte keylen ; /* for Coldfire SEC */
wolfSSL 0:1239e9b70ca2 79 byte ivlen ; /* for Coldfire SEC */
wolfSSL 0:1239e9b70ca2 80 byte iv[DES3_IVLEN]; /* for Coldfire SEC */
wolfSSL 0:1239e9b70ca2 81 #endif
wolfSSL 0:1239e9b70ca2 82 word32 key[3][DES_KS_SIZE];
wolfSSL 0:1239e9b70ca2 83 word32 reg[DES_BLOCK_SIZE / sizeof(word32)]; /* for CBC mode */
wolfSSL 0:1239e9b70ca2 84 word32 tmp[DES_BLOCK_SIZE / sizeof(word32)]; /* same */
wolfSSL 0:1239e9b70ca2 85 #ifdef HAVE_CAVIUM
wolfSSL 0:1239e9b70ca2 86 int devId; /* nitrox device id */
wolfSSL 0:1239e9b70ca2 87 word32 magic; /* using cavium magic */
wolfSSL 0:1239e9b70ca2 88 word64 contextHandle; /* nitrox context memory handle */
wolfSSL 0:1239e9b70ca2 89 #endif
wolfSSL 0:1239e9b70ca2 90 } Des3;
wolfSSL 0:1239e9b70ca2 91
wolfSSL 0:1239e9b70ca2 92
wolfSSL 0:1239e9b70ca2 93 CYASSL_API int Des_SetKey(Des* des, const byte* key, const byte* iv, int dir);
wolfSSL 0:1239e9b70ca2 94 CYASSL_API void Des_SetIV(Des* des, const byte* iv);
wolfSSL 0:1239e9b70ca2 95 CYASSL_API void Des_CbcEncrypt(Des* des, byte* out, const byte* in, word32 sz);
wolfSSL 0:1239e9b70ca2 96 CYASSL_API void Des_CbcDecrypt(Des* des, byte* out, const byte* in, word32 sz);
wolfSSL 0:1239e9b70ca2 97 CYASSL_API void Des_EcbEncrypt(Des* des, byte* out, const byte* in, word32 sz);
wolfSSL 0:1239e9b70ca2 98
wolfSSL 0:1239e9b70ca2 99 CYASSL_API int Des3_SetKey(Des3* des, const byte* key, const byte* iv,int dir);
wolfSSL 0:1239e9b70ca2 100 CYASSL_API int Des3_SetIV(Des3* des, const byte* iv);
wolfSSL 0:1239e9b70ca2 101 CYASSL_API int Des3_CbcEncrypt(Des3* des, byte* out, const byte* in,word32 sz);
wolfSSL 0:1239e9b70ca2 102 CYASSL_API int Des3_CbcDecrypt(Des3* des, byte* out, const byte* in,word32 sz);
wolfSSL 0:1239e9b70ca2 103
wolfSSL 0:1239e9b70ca2 104
wolfSSL 0:1239e9b70ca2 105 #ifdef HAVE_CAVIUM
wolfSSL 0:1239e9b70ca2 106 CYASSL_API int Des3_InitCavium(Des3*, int);
wolfSSL 0:1239e9b70ca2 107 CYASSL_API void Des3_FreeCavium(Des3*);
wolfSSL 0:1239e9b70ca2 108 #endif
wolfSSL 0:1239e9b70ca2 109
wolfSSL 0:1239e9b70ca2 110
wolfSSL 0:1239e9b70ca2 111 #ifdef HAVE_FIPS
wolfSSL 0:1239e9b70ca2 112 /* fips wrapper calls, user can call direct */
wolfSSL 0:1239e9b70ca2 113 CYASSL_API int Des3_SetKey_fips(Des3* des, const byte* key, const byte* iv,
wolfSSL 0:1239e9b70ca2 114 int dir);
wolfSSL 0:1239e9b70ca2 115 CYASSL_API int Des3_SetIV_fips(Des3* des, const byte* iv);
wolfSSL 0:1239e9b70ca2 116 CYASSL_API int Des3_CbcEncrypt_fips(Des3* des, byte* out, const byte* in,
wolfSSL 0:1239e9b70ca2 117 word32 sz);
wolfSSL 0:1239e9b70ca2 118 CYASSL_API int Des3_CbcDecrypt_fips(Des3* des, byte* out, const byte* in,
wolfSSL 0:1239e9b70ca2 119 word32 sz);
wolfSSL 0:1239e9b70ca2 120 #ifndef FIPS_NO_WRAPPERS
wolfSSL 0:1239e9b70ca2 121 /* if not impl or fips.c impl wrapper force fips calls if fips build */
wolfSSL 0:1239e9b70ca2 122 #define Des3_SetKey Des3_SetKey_fips
wolfSSL 0:1239e9b70ca2 123 #define Des3_SetIV Des3_SetIV_fips
wolfSSL 0:1239e9b70ca2 124 #define Des3_CbcEncrypt Des3_CbcEncrypt_fips
wolfSSL 0:1239e9b70ca2 125 #define Des3_CbcDecrypt Des3_CbcDecrypt_fips
wolfSSL 0:1239e9b70ca2 126 #endif /* FIPS_NO_WRAPPERS */
wolfSSL 0:1239e9b70ca2 127
wolfSSL 0:1239e9b70ca2 128 #endif /* HAVE_FIPS */
wolfSSL 0:1239e9b70ca2 129
wolfSSL 0:1239e9b70ca2 130
wolfSSL 0:1239e9b70ca2 131 #ifdef __cplusplus
wolfSSL 0:1239e9b70ca2 132 } /* extern "C" */
wolfSSL 0:1239e9b70ca2 133 #endif
wolfSSL 0:1239e9b70ca2 134
wolfSSL 0:1239e9b70ca2 135 #endif /* NO_DES3 */
wolfSSL 0:1239e9b70ca2 136 #endif /* CTAO_CRYPT_DES3_H */
wolfSSL 0:1239e9b70ca2 137
wolfSSL 0:1239e9b70ca2 138