2002-07-05 05:33:40 +00:00
|
|
|
#ifndef _CRYPT_
|
|
|
|
#define _CRYPT_
|
2002-06-14 05:49:34 +00:00
|
|
|
// some interface functions for RSAEuro
|
|
|
|
|
2002-07-07 20:39:24 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2002-07-05 05:33:40 +00:00
|
|
|
#include "rsaeuro.h"
|
|
|
|
extern "C" {
|
|
|
|
#include "rsa.h"
|
|
|
|
}
|
|
|
|
|
2002-06-14 05:49:34 +00:00
|
|
|
struct KEY {
|
|
|
|
unsigned short int bits;
|
|
|
|
unsigned char data[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DATA_BLOCK {
|
|
|
|
unsigned char* data;
|
|
|
|
unsigned int len;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MIN_OUT_BUFFER_SIZE MAX_RSA_MODULUS_LEN+1
|
|
|
|
|
2002-07-07 20:39:24 +00:00
|
|
|
// the size of a binary signature (encrypted MD5)
|
2002-07-05 05:33:40 +00:00
|
|
|
//
|
2002-07-07 20:39:24 +00:00
|
|
|
#define SIGNATURE_SIZE_BINARY MIN_OUT_BUFFER_SIZE
|
|
|
|
|
|
|
|
// size of text-encoded signature
|
|
|
|
#define SIGNATURE_SIZE_TEXT (SIGNATURE_SIZE_BINARY*2+20)
|
2002-07-05 05:33:40 +00:00
|
|
|
|
2002-06-14 05:49:34 +00:00
|
|
|
int print_hex_data(FILE* f, DATA_BLOCK&);
|
2002-07-05 05:33:40 +00:00
|
|
|
int sprint_hex_data(char* p, DATA_BLOCK&);
|
2002-06-14 05:49:34 +00:00
|
|
|
int scan_hex_data(FILE* f, DATA_BLOCK&);
|
2002-07-05 05:33:40 +00:00
|
|
|
int sscan_hex_data(char* p, DATA_BLOCK&);
|
2002-06-14 05:49:34 +00:00
|
|
|
int print_key_hex(FILE*, KEY* key, int len);
|
|
|
|
int scan_key_hex(FILE*, KEY* key, int len);
|
2002-07-07 20:39:24 +00:00
|
|
|
int sscan_key_hex(char*, KEY* key, int len);
|
2002-06-14 05:49:34 +00:00
|
|
|
int encrypt_private(
|
|
|
|
R_RSA_PRIVATE_KEY& key, DATA_BLOCK& in, DATA_BLOCK& out, int&
|
|
|
|
);
|
|
|
|
int decrypt_public(R_RSA_PUBLIC_KEY& key, DATA_BLOCK& in, DATA_BLOCK& out);
|
|
|
|
int sign_file(char* path, R_RSA_PRIVATE_KEY&, DATA_BLOCK& signature);
|
2002-07-05 05:33:40 +00:00
|
|
|
int sign_block(DATA_BLOCK& data, R_RSA_PRIVATE_KEY&, DATA_BLOCK& signature);
|
2002-06-14 05:49:34 +00:00
|
|
|
int verify_file(char* path, R_RSA_PUBLIC_KEY&, DATA_BLOCK& signature, bool&);
|
2002-07-07 20:39:24 +00:00
|
|
|
int verify_file2(char* path, char* signature, char* key, bool&);
|
2002-07-05 05:33:40 +00:00
|
|
|
int verify_string(char* text, char* signature, R_RSA_PUBLIC_KEY&, bool&);
|
2002-07-07 20:39:24 +00:00
|
|
|
int verify_string2(char* text, char* signature, char* key, bool&);
|
2002-07-05 05:33:40 +00:00
|
|
|
|
|
|
|
#endif
|