1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-24 20:45:17 -07:00

Avoid duplicate crypto_stream.h

This commit is contained in:
Frank Denis 2013-04-19 14:58:11 +02:00
parent 83842a73c8
commit 7844b905d4
18 changed files with 16 additions and 16 deletions

View File

@ -40,16 +40,16 @@ libsodium_la_SOURCES = \
crypto_auth/hmacsha512256/ref/api.h \
crypto_auth/hmacsha512256/ref/hmac_hmacsha512256.c \
crypto_auth/hmacsha512256/ref/verify_hmacsha512256.c \
crypto_stream/salsa20/ref/crypto_stream.h \
crypto_stream/salsa20/ref/api.h \
crypto_stream/salsa20/ref/stream_salsa20.c \
crypto_stream/salsa20/ref/xor_salsa20.c \
crypto_stream/salsa2012/ref/crypto_stream.h \
crypto_stream/salsa2012/ref/api.h \
crypto_stream/salsa2012/ref/stream_salsa2012.c \
crypto_stream/salsa2012/ref/xor_salsa2012.c \
crypto_stream/salsa208/ref/crypto_stream.h \
crypto_stream/salsa208/ref/api.h \
crypto_stream/salsa208/ref/stream_salsa208.c \
crypto_stream/salsa208/ref/xor_salsa208.c \
crypto_stream/xsalsa20/ref/crypto_stream.h \
crypto_stream/xsalsa20/ref/api.h \
crypto_stream/xsalsa20/ref/stream_xsalsa20.c \
crypto_stream/xsalsa20/ref/xor_xsalsa20.c \
crypto_onetimeauth/poly1305/onetimeauth_poly1305.c \

View File

@ -2,10 +2,10 @@
* Date: 2009-03-19
* Public domain */
#include "api.h"
#include "int128.h"
#include "common.h"
#include "consts.h"
#include "crypto_stream.h"
int crypto_stream_afternm(unsigned char *outp, unsigned long long len, const unsigned char *noncep, const unsigned char *c)
{

View File

@ -2,10 +2,10 @@
* Date: 2009-03-19
* Public domain */
#include "api.h"
#include "consts.h"
#include "int128.h"
#include "common.h"
#include "crypto_stream.h"
int crypto_stream_beforenm(unsigned char *c, const unsigned char *k)
{

View File

@ -1,4 +1,4 @@
#include "crypto_stream.h"
#include "api.h"
int crypto_stream(
unsigned char *out,

View File

@ -3,10 +3,10 @@
* Public domain */
#include <stdio.h>
#include "api.h"
#include "int128.h"
#include "common.h"
#include "consts.h"
#include "crypto_stream.h"
int crypto_stream_xor_afternm(unsigned char *outp, const unsigned char *inp, unsigned long long len, const unsigned char *noncep, const unsigned char *c)
{

View File

@ -4,8 +4,8 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_salsa20.h"
#include "crypto_stream.h"
typedef unsigned int uint32;

View File

@ -4,8 +4,8 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_salsa20.h"
#include "crypto_stream.h"
typedef unsigned int uint32;

View File

@ -4,8 +4,8 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_salsa2012.h"
#include "crypto_stream.h"
typedef unsigned int uint32;

View File

@ -4,8 +4,8 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_salsa2012.h"
#include "crypto_stream.h"
typedef unsigned int uint32;

View File

@ -4,8 +4,8 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_salsa208.h"
#include "crypto_stream.h"
typedef unsigned int uint32;

View File

@ -4,8 +4,8 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_salsa208.h"
#include "crypto_stream.h"
typedef unsigned int uint32;

View File

@ -4,9 +4,9 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_hsalsa20.h"
#include "crypto_stream_salsa20.h"
#include "crypto_stream.h"
static const unsigned char sigma[16] = "expand 32-byte k";

View File

@ -4,9 +4,9 @@ D. J. Bernstein
Public domain.
*/
#include "api.h"
#include "crypto_core_hsalsa20.h"
#include "crypto_stream_salsa20.h"
#include "crypto_stream.h"
static const unsigned char sigma[16] = "expand 32-byte k";