OpenSSL  1.0.1c
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros
Classes | Macros | Typedefs | Functions
rc2.h File Reference
#include <openssl/opensslconf.h>

Go to the source code of this file.

Classes

struct  rc2_key_st
 

Macros

#define RC2_ENCRYPT   1
 
#define RC2_DECRYPT   0
 
#define RC2_BLOCK   8
 
#define RC2_KEY_LENGTH   16
 

Typedefs

typedef struct rc2_key_st RC2_KEY
 

Functions

void RC2_set_key (RC2_KEY *key, int len, const unsigned char *data, int bits)
 
void RC2_ecb_encrypt (const unsigned char *in, unsigned char *out, RC2_KEY *key, int enc)
 
void RC2_encrypt (unsigned long *data, RC2_KEY *key)
 
void RC2_decrypt (unsigned long *data, RC2_KEY *key)
 
void RC2_cbc_encrypt (const unsigned char *in, unsigned char *out, long length, RC2_KEY *ks, unsigned char *iv, int enc)
 
void RC2_cfb64_encrypt (const unsigned char *in, unsigned char *out, long length, RC2_KEY *schedule, unsigned char *ivec, int *num, int enc)
 
void RC2_ofb64_encrypt (const unsigned char *in, unsigned char *out, long length, RC2_KEY *schedule, unsigned char *ivec, int *num)
 

Macro Definition Documentation

#define RC2_BLOCK   8

Definition at line 70 of file rc2.h.

#define RC2_DECRYPT   0

Definition at line 68 of file rc2.h.

#define RC2_ENCRYPT   1

Definition at line 67 of file rc2.h.

#define RC2_KEY_LENGTH   16

Definition at line 71 of file rc2.h.

Typedef Documentation

typedef struct rc2_key_st RC2_KEY

Function Documentation

void RC2_cbc_encrypt ( const unsigned char *  in,
unsigned char *  out,
long  length,
RC2_KEY ks,
unsigned char *  iv,
int  enc 
)

Definition at line 62 of file rc2_cbc.c.

void RC2_cfb64_encrypt ( const unsigned char *  in,
unsigned char *  out,
long  length,
RC2_KEY schedule,
unsigned char *  ivec,
int *  num,
int  enc 
)

Definition at line 67 of file rc2cfb64.c.

void RC2_decrypt ( unsigned long *  data,
RC2_KEY key 
)

Definition at line 181 of file rc2_cbc.c.

void RC2_ecb_encrypt ( const unsigned char *  in,
unsigned char *  out,
RC2_KEY key,
int  enc 
)

Definition at line 73 of file rc2_ecb.c.

void RC2_encrypt ( unsigned long *  data,
RC2_KEY key 
)

Definition at line 136 of file rc2_cbc.c.

void RC2_ofb64_encrypt ( const unsigned char *  in,
unsigned char *  out,
long  length,
RC2_KEY schedule,
unsigned char *  ivec,
int *  num 
)

Definition at line 66 of file rc2ofb64.c.

void RC2_set_key ( RC2_KEY key,
int  len,
const unsigned char *  data,
int  bits 
)

Definition at line 98 of file rc2_skey.c.