aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/zinc.h
blob: 319b71d83442c8f6e60ed5999fa6144501aac9bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0 OR 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