1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*
* Copyright (C) 2002 Nikos Mavroyanopoulos
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <libdefs.h>
#include <mcrypt_modules.h>
#define _init_mcrypt ctr_LTX__init_mcrypt
#define _mcrypt_set_state ctr_LTX__mcrypt_set_state
#define _mcrypt_get_state ctr_LTX__mcrypt_get_state
#define _end_mcrypt ctr_LTX__end_mcrypt
#define _mcrypt ctr_LTX__mcrypt
#define _mdecrypt ctr_LTX__mdecrypt
#define _has_iv ctr_LTX__has_iv
#define _is_block_mode ctr_LTX__is_block_mode
#define _is_block_algorithm_mode ctr_LTX__is_block_algorithm_mode
#define _mcrypt_get_modes_name ctr_LTX__mcrypt_get_modes_name
#define _mcrypt_mode_get_size ctr_LTX__mcrypt_mode_get_size
#define _mcrypt_mode_version ctr_LTX__mcrypt_mode_version
typedef struct ctr_buf {
byte* enc_counter;
byte* c_counter;
int c_counter_pos;
int blocksize;
} CTR_BUFFER;
/* CTR MODE */
/* This function will add one to the given number (as a byte string).
* has been reached.
*/
static void increase_counter( byte *x, int x_size) {
register int i, y=0;
for (i=x_size-1;i>=0;i--) {
y = 0;
if ( x[i] == 0xff) {
x[i] = 0;
y = 1;
} else x[i]++;
if (y==0) break;
}
return;
}
/* size holds the size of the IV (counter in this mode).
* This is the block size.
*/
int _init_mcrypt( CTR_BUFFER* buf, void *key, int lenofkey, void *IV, int size)
{
buf->c_counter = buf->enc_counter = NULL;
/* For ctr */
buf->c_counter_pos = 0;
buf->blocksize = size;
buf->c_counter=calloc( 1, size);
if (buf->c_counter==NULL) goto freeall;
buf->enc_counter=calloc( 1, size);
if (buf->enc_counter==NULL) goto freeall;
if (IV!=NULL) {
memcpy(buf->enc_counter, IV, size);
memcpy(buf->c_counter, IV, size);
}
/* End ctr */
return 0;
freeall:
free(buf->c_counter);
free(buf->enc_counter);
return -1;
}
int _mcrypt_set_state( CTR_BUFFER* buf, byte *IV, int size)
{
buf->c_counter_pos = IV[0];
memcpy(buf->c_counter, &IV[1], size-1);
memcpy(buf->enc_counter, &IV[1], size-1);
return 0;
}
int _mcrypt_get_state( CTR_BUFFER* buf, byte *IV, int *size)
{
if (*size < buf->blocksize + 1) {
*size = buf->blocksize + 1;
return -1;
}
*size = buf->blocksize + 1;
IV[0] = buf->c_counter_pos;
memcpy( &IV[1], buf->c_counter, buf->blocksize);
return 0;
}
void _end_mcrypt( CTR_BUFFER* buf) {
free(buf->c_counter);
free(buf->enc_counter);
}
inline static
void xor_stuff( CTR_BUFFER *buf, void* akey, void (*func)(void*,void*), byte* plain, int blocksize, int xor_size)
{
void (*_mcrypt_block_encrypt) (void *, void *);
_mcrypt_block_encrypt = func;
if (xor_size == blocksize) {
if (buf->c_counter_pos == 0) {
memcpy( buf->enc_counter, buf->c_counter, blocksize);
_mcrypt_block_encrypt(akey, buf->enc_counter);
memxor( plain, buf->enc_counter, blocksize);
increase_counter( buf->c_counter, blocksize);
} else {
int size = blocksize - buf->c_counter_pos;
memxor( plain, &buf->enc_counter[buf->c_counter_pos],
size);
increase_counter( buf->c_counter, blocksize);
memcpy( buf->enc_counter, buf->c_counter, blocksize);
_mcrypt_block_encrypt(akey, buf->enc_counter);
memxor( &plain[size], buf->enc_counter,
buf->c_counter_pos);
/* buf->c_counter_pos remains the same */
}
} else { /* xor_size != blocksize */
if (buf->c_counter_pos == 0) {
memcpy( buf->enc_counter, buf->c_counter, blocksize);
_mcrypt_block_encrypt(akey, buf->enc_counter);
memxor( plain, buf->enc_counter, xor_size);
buf->c_counter_pos = xor_size;
} else {
int size = blocksize - buf->c_counter_pos;
int min_size = size < xor_size ? size: xor_size;
memxor( plain, &buf->enc_counter[buf->c_counter_pos],
min_size);
buf->c_counter_pos += min_size;
if (min_size >= xor_size)
return;
increase_counter( buf->c_counter, blocksize);
memcpy( buf->enc_counter, buf->c_counter, blocksize);
_mcrypt_block_encrypt(akey, buf->enc_counter);
memxor( &plain[min_size], buf->enc_counter,
xor_size - min_size);
buf->c_counter_pos = xor_size - min_size;
}
}
return;
}
int _mcrypt( CTR_BUFFER* buf,void *plaintext, int len, int blocksize, void* akey, void (*func)(void*,void*), void (*func2)(void*,void*))
{ /* plaintext can be any size */
byte *plain;
word32 *fplain = plaintext;
int i, j=0;
int modlen;
plain = plaintext;
for (j = 0; j < len / blocksize; j++) {
xor_stuff( buf, akey, func, plain, blocksize, blocksize);
plain += blocksize;
/* Put the new register */
}
modlen = len % blocksize;
if (modlen > 0) {
/* This is only usefull if encrypting the
* final block. Otherwise you'll not be
* able to decrypt it.
*/
xor_stuff( buf, akey, func, plain, blocksize, modlen);
}
return 0;
}
int _mdecrypt( CTR_BUFFER* buf,void *plaintext, int len, int blocksize, void* akey, void (*func)(void*,void*), void (*func2)(void*,void*))
{ /* plaintext can be any size */
return _mcrypt( buf, plaintext, len, blocksize, akey, func, func2);
}
int _has_iv() { return 1; }
int _is_block_mode() { return 0; }
int _is_block_algorithm_mode() { return 1; }
const char *_mcrypt_get_modes_name() { return "CTR";}
int _mcrypt_mode_get_size () {return sizeof(CTR_BUFFER);}
word32 _mcrypt_mode_version() {
return 20020307;
}
#ifdef WIN32
# ifdef USE_LTDL
WIN32DLL_DEFINE int main (void)
{
/* empty main function to avoid linker error (see cygwin FAQ) */
}
# endif
#endif
|