Go to the source code of this file.
|
void | RC5_32_set_key (RC5_32_KEY *key, int len, const unsigned char *data, int rounds) |
|
void | RC5_32_ecb_encrypt (const unsigned char *in, unsigned char *out, RC5_32_KEY *key, int enc) |
|
void | RC5_32_encrypt (unsigned long *data, RC5_32_KEY *key) |
|
void | RC5_32_decrypt (unsigned long *data, RC5_32_KEY *key) |
|
void | RC5_32_cbc_encrypt (const unsigned char *in, unsigned char *out, long length, RC5_32_KEY *ks, unsigned char *iv, int enc) |
|
void | RC5_32_cfb64_encrypt (const unsigned char *in, unsigned char *out, long length, RC5_32_KEY *schedule, unsigned char *ivec, int *num, int enc) |
|
void | RC5_32_ofb64_encrypt (const unsigned char *in, unsigned char *out, long length, RC5_32_KEY *schedule, unsigned char *ivec, int *num) |
|
Definition at line 87 of file rc5.h.
Definition at line 88 of file rc5.h.
Definition at line 78 of file rc5.h.
#define RC5_32_INT unsigned long |
Definition at line 76 of file rc5.h.
#define RC5_32_KEY_LENGTH 16 /* This is a default, max is 255 */ |
Definition at line 79 of file rc5.h.
Definition at line 86 of file rc5.h.
Definition at line 73 of file rc5.h.
Definition at line 72 of file rc5.h.
void RC5_32_cbc_encrypt |
( |
const unsigned char * |
in, |
|
|
unsigned char * |
out, |
|
|
long |
length, |
|
|
RC5_32_KEY * |
ks, |
|
|
unsigned char * |
iv, |
|
|
int |
enc |
|
) |
| |
void RC5_32_cfb64_encrypt |
( |
const unsigned char * |
in, |
|
|
unsigned char * |
out, |
|
|
long |
length, |
|
|
RC5_32_KEY * |
schedule, |
|
|
unsigned char * |
ivec, |
|
|
int * |
num, |
|
|
int |
enc |
|
) |
| |
void RC5_32_ecb_encrypt |
( |
const unsigned char * |
in, |
|
|
unsigned char * |
out, |
|
|
RC5_32_KEY * |
key, |
|
|
int |
enc |
|
) |
| |
void RC5_32_ofb64_encrypt |
( |
const unsigned char * |
in, |
|
|
unsigned char * |
out, |
|
|
long |
length, |
|
|
RC5_32_KEY * |
schedule, |
|
|
unsigned char * |
ivec, |
|
|
int * |
num |
|
) |
| |
void RC5_32_set_key |
( |
RC5_32_KEY * |
key, |
|
|
int |
len, |
|
|
const unsigned char * |
data, |
|
|
int |
rounds |
|
) |
| |