This commit is contained in:
Frank Denis
2017-02-23 09:57:09 +01:00
parent a1c4cf5b3c
commit 2a24a27afa
3 changed files with 554 additions and 306 deletions
@@ -2,6 +2,8 @@
#ifndef onetimeauth_poly1305_H
#define onetimeauth_poly1305_H
#include "crypto_onetimeauth_poly1305.h"
typedef struct crypto_onetimeauth_poly1305_implementation {
int (*onetimeauth)(unsigned char *out, const unsigned char *in,
unsigned long long inlen, const unsigned char *k);
File diff suppressed because it is too large Load Diff
@@ -3,8 +3,8 @@
#include <stddef.h>
#include "crypto_onetimeauth_poly1305.h"
#include "../onetimeauth_poly1305.h"
#include "crypto_onetimeauth_poly1305.h"
extern struct crypto_onetimeauth_poly1305_implementation
crypto_onetimeauth_poly1305_sse2_implementation;