summaryrefslogtreecommitdiff
path: root/ecp/src/crypto/test/ed25519_open.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-08-05 03:38:22 +0200
committerUros Majstorovic <majstor@majstor.org>2020-08-05 03:38:22 +0200
commit5cd610a07468137066ea4daa5176c3e7045113b0 (patch)
treea6a5b572572f8f37ec2cb87332fa46e9bcc53aa7 /ecp/src/crypto/test/ed25519_open.c
parent2473a7d5c51806ab8651cd3c4e07a15b62084eb5 (diff)
ecp moved to root; fixed utils and tests
Diffstat (limited to 'ecp/src/crypto/test/ed25519_open.c')
-rw-r--r--ecp/src/crypto/test/ed25519_open.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/ecp/src/crypto/test/ed25519_open.c b/ecp/src/crypto/test/ed25519_open.c
new file mode 100644
index 0000000..66f32f5
--- /dev/null
+++ b/ecp/src/crypto/test/ed25519_open.c
@@ -0,0 +1,40 @@
+#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;
+
+ int fd = open("msg.sig", O_RDONLY);
+ read(fd, public, KEY_LEN);
+ read(fd, signature, SIG_LEN);
+ close(fd);
+
+ rv = ED25519_verify(msg, msg_len, signature, public);
+ printf("OPEN rv:%d\n", rv);
+} \ No newline at end of file