diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 21:28:22 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 21:28:22 +0100 |
commit | 0d0e9facfcea3cf96da3b63285865182fdd5477e (patch) | |
tree | cca42e7aab184cad981c794073a4376aa2616193 /code/core/crypto/test/ed25519.c | |
parent | 05e11f491b84a110b9ca08612df370b91e9bdcbc (diff) |
refatoring dirs
Diffstat (limited to 'code/core/crypto/test/ed25519.c')
-rw-r--r-- | code/core/crypto/test/ed25519.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/code/core/crypto/test/ed25519.c b/code/core/crypto/test/ed25519.c deleted file mode 100644 index 21334cb..0000000 --- a/code/core/crypto/test/ed25519.c +++ /dev/null @@ -1,37 +0,0 @@ -#include <string.h> -#include <stdio.h> -#include <stdlib.h> -#include <fcntl.h> -#include <unistd.h> - -#include <curve25519.h> - -#define KEY_LEN 32 -#define SIG_LEN 64 - -static int v_rng(void *buf, size_t bufsize) { - int fd; - - if((fd = open("/dev/urandom", O_RDONLY)) < 0) return -1; - size_t nb = read(fd, buf, bufsize); - close(fd); - if (nb != bufsize) return -1; - return 0; -} - -int main(int argc, char *argv[]) { - unsigned char msg[1024]; - size_t msg_len; - int rv; - unsigned char public[KEY_LEN]; - unsigned char private[KEY_LEN * 2]; - unsigned char signature[SIG_LEN]; - - strcpy((char *)msg, "PERA JE CAR!"); - msg_len = strlen((char *)msg) + 1; - - ED25519_keypair(public, private, v_rng); - ED25519_sign(signature, msg, msg_len, private); - rv = ED25519_verify(msg, msg_len, signature, public); - printf("OPEN rv:%d\n", rv); -}
\ No newline at end of file |