Remove crypto_[u]int*.h headers

Not used internally by anything for a very long time.
Number of projects on GitHub using these: zero.

Standard types from stdint.h should be preferred.
This commit is contained in:
Frank Denis 2017-03-12 18:13:31 +01:00
parent 81ed03a442
commit fd797db30a
7 changed files with 0 additions and 54 deletions

View File

@ -48,12 +48,6 @@ SODIUM_EXPORT = \
sodium/crypto_stream_salsa208.h \
sodium/crypto_stream_xchacha20.h \
sodium/crypto_stream_xsalsa20.h \
sodium/crypto_int32.h \
sodium/crypto_int64.h \
sodium/crypto_uint16.h \
sodium/crypto_uint32.h \
sodium/crypto_uint64.h \
sodium/crypto_uint8.h \
sodium/crypto_verify_16.h \
sodium/crypto_verify_32.h \
sodium/crypto_verify_64.h \

View File

@ -1,8 +0,0 @@
#ifndef crypto_int32_H
#define crypto_int32_H
#include <stdint.h>
typedef int32_t crypto_int32;
#endif

View File

@ -1,8 +0,0 @@
#ifndef crypto_int64_H
#define crypto_int64_H
#include <stdint.h>
typedef int64_t crypto_int64;
#endif

View File

@ -1,8 +0,0 @@
#ifndef crypto_uint16_H
#define crypto_uint16_H
#include <stdint.h>
typedef uint16_t crypto_uint16;
#endif

View File

@ -1,8 +0,0 @@
#ifndef crypto_uint32_H
#define crypto_uint32_H
#include <stdint.h>
typedef uint32_t crypto_uint32;
#endif

View File

@ -1,8 +0,0 @@
#ifndef crypto_uint64_H
#define crypto_uint64_H
#include <stdint.h>
typedef uint64_t crypto_uint64;
#endif

View File

@ -1,8 +0,0 @@
#ifndef crypto_uint8_H
#define crypto_uint8_H
#include <stdint.h>
typedef uint8_t crypto_uint8;
#endif