diff options
| author | Benedict <benedict@0xb8000.de> | 2016-12-15 21:19:27 +0100 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:26 +0100 |
| commit | 1fe002d0b46b3e5b3559dd629f3d56b16bb12c0b (patch) | |
| tree | 9aa8ddebc071eeb41b6acb4159c15bb59d0a4739 /lib/lib6.h | |
| parent | cfe5cbfd43b5c3e18737fc2707d351919ddf4aa2 (diff) | |
set6: task42 completed
Diffstat (limited to 'lib/lib6.h')
| -rw-r--r-- | lib/lib6.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#ifndef __LIB_6_H__ +#define __LIB_6_H__ +#include "lib6.h" +#include "lib5.h" +#include "lib4.h" +#include "lib3.h" +#include "lib2.h" +#include "lib.h" + + +int rsa_sign_bignum(BIGNUM *message, BIGNUM *signed_message, struct rsa_key_bignum *private); +int rsa_verify_bignum(BIGNUM *signed_message, BIGNUM *org_message, struct rsa_key_bignum *public); +int shitty_pkcs1_5_padding_verify(char *to_verify, int len, char *message); +int pkcs1_5_padding_verify(char *to_verify, int len, char *message); + +#endif /* __LIB_6_H__ */ |
