testing
This commit is contained in:
8
rsa-algorithms/include/rsa.h
Normal file
8
rsa-algorithms/include/rsa.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef RSA_H
|
||||
#define RSA_H
|
||||
|
||||
void rsa_generate_keys(unsigned long *e, unsigned long *d, unsigned long *n);
|
||||
unsigned long rsa_encrypt(unsigned long message, unsigned long e, unsigned long n);
|
||||
unsigned long rsa_decrypt(unsigned long ciphertext, unsigned long d, unsigned long n);
|
||||
|
||||
#endif // RSA_H
|
||||
Reference in New Issue
Block a user