aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/zinc.h
blob: 9eab01598f98424a0cb937d1ee73cc179ecf9563 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 */

#ifndef _WG_ZINC_H
#define _WG_ZINC_H

int chacha20_mod_init(void);
int poly1305_mod_init(void);
int chacha20poly1305_mod_init(void);
int blake2s_mod_init(void);
int curve25519_mod_init(void);

#endif