2003-06-11 23:36:48 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
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
|