Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/sodium
File: crypto_onetimeauth.h
#ifndef crypto_onetimeauth_H
[0] Fix | Delete
#define crypto_onetimeauth_H
[1] Fix | Delete
[2] Fix | Delete
#include <stddef.h>
[3] Fix | Delete
[4] Fix | Delete
#include "crypto_onetimeauth_poly1305.h"
[5] Fix | Delete
#include "export.h"
[6] Fix | Delete
[7] Fix | Delete
#ifdef __cplusplus
[8] Fix | Delete
# ifdef __GNUC__
[9] Fix | Delete
# pragma GCC diagnostic ignored "-Wlong-long"
[10] Fix | Delete
# endif
[11] Fix | Delete
extern "C" {
[12] Fix | Delete
#endif
[13] Fix | Delete
[14] Fix | Delete
typedef crypto_onetimeauth_poly1305_state crypto_onetimeauth_state;
[15] Fix | Delete
[16] Fix | Delete
SODIUM_EXPORT
[17] Fix | Delete
size_t crypto_onetimeauth_statebytes(void);
[18] Fix | Delete
[19] Fix | Delete
#define crypto_onetimeauth_BYTES crypto_onetimeauth_poly1305_BYTES
[20] Fix | Delete
SODIUM_EXPORT
[21] Fix | Delete
size_t crypto_onetimeauth_bytes(void);
[22] Fix | Delete
[23] Fix | Delete
#define crypto_onetimeauth_KEYBYTES crypto_onetimeauth_poly1305_KEYBYTES
[24] Fix | Delete
SODIUM_EXPORT
[25] Fix | Delete
size_t crypto_onetimeauth_keybytes(void);
[26] Fix | Delete
[27] Fix | Delete
#define crypto_onetimeauth_PRIMITIVE "poly1305"
[28] Fix | Delete
SODIUM_EXPORT
[29] Fix | Delete
const char *crypto_onetimeauth_primitive(void);
[30] Fix | Delete
[31] Fix | Delete
SODIUM_EXPORT
[32] Fix | Delete
int crypto_onetimeauth(unsigned char *out, const unsigned char *in,
[33] Fix | Delete
unsigned long long inlen, const unsigned char *k)
[34] Fix | Delete
__attribute__ ((nonnull(1, 4)));
[35] Fix | Delete
[36] Fix | Delete
SODIUM_EXPORT
[37] Fix | Delete
int crypto_onetimeauth_verify(const unsigned char *h, const unsigned char *in,
[38] Fix | Delete
unsigned long long inlen, const unsigned char *k)
[39] Fix | Delete
__attribute__ ((warn_unused_result)) __attribute__ ((nonnull(1, 4)));
[40] Fix | Delete
[41] Fix | Delete
SODIUM_EXPORT
[42] Fix | Delete
int crypto_onetimeauth_init(crypto_onetimeauth_state *state,
[43] Fix | Delete
const unsigned char *key) __attribute__ ((nonnull));
[44] Fix | Delete
[45] Fix | Delete
SODIUM_EXPORT
[46] Fix | Delete
int crypto_onetimeauth_update(crypto_onetimeauth_state *state,
[47] Fix | Delete
const unsigned char *in,
[48] Fix | Delete
unsigned long long inlen)
[49] Fix | Delete
__attribute__ ((nonnull(1)));
[50] Fix | Delete
[51] Fix | Delete
SODIUM_EXPORT
[52] Fix | Delete
int crypto_onetimeauth_final(crypto_onetimeauth_state *state,
[53] Fix | Delete
unsigned char *out) __attribute__ ((nonnull));
[54] Fix | Delete
[55] Fix | Delete
SODIUM_EXPORT
[56] Fix | Delete
void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES])
[57] Fix | Delete
__attribute__ ((nonnull));
[58] Fix | Delete
[59] Fix | Delete
#ifdef __cplusplus
[60] Fix | Delete
}
[61] Fix | Delete
#endif
[62] Fix | Delete
[63] Fix | Delete
#endif
[64] Fix | Delete
[65] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function