Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../usr/include/sodium
File: crypto_auth_hmacsha512.h
#ifndef crypto_auth_hmacsha512_H
[0] Fix | Delete
#define crypto_auth_hmacsha512_H
[1] Fix | Delete
[2] Fix | Delete
#include <stddef.h>
[3] Fix | Delete
#include "crypto_hash_sha512.h"
[4] Fix | Delete
#include "export.h"
[5] Fix | Delete
[6] Fix | Delete
#ifdef __cplusplus
[7] Fix | Delete
# ifdef __GNUC__
[8] Fix | Delete
# pragma GCC diagnostic ignored "-Wlong-long"
[9] Fix | Delete
# endif
[10] Fix | Delete
extern "C" {
[11] Fix | Delete
#endif
[12] Fix | Delete
[13] Fix | Delete
#define crypto_auth_hmacsha512_BYTES 64U
[14] Fix | Delete
SODIUM_EXPORT
[15] Fix | Delete
size_t crypto_auth_hmacsha512_bytes(void);
[16] Fix | Delete
[17] Fix | Delete
#define crypto_auth_hmacsha512_KEYBYTES 32U
[18] Fix | Delete
SODIUM_EXPORT
[19] Fix | Delete
size_t crypto_auth_hmacsha512_keybytes(void);
[20] Fix | Delete
[21] Fix | Delete
SODIUM_EXPORT
[22] Fix | Delete
int crypto_auth_hmacsha512(unsigned char *out,
[23] Fix | Delete
const unsigned char *in,
[24] Fix | Delete
unsigned long long inlen,
[25] Fix | Delete
const unsigned char *k) __attribute__ ((nonnull(1, 4)));
[26] Fix | Delete
[27] Fix | Delete
SODIUM_EXPORT
[28] Fix | Delete
int crypto_auth_hmacsha512_verify(const unsigned char *h,
[29] Fix | Delete
const unsigned char *in,
[30] Fix | Delete
unsigned long long inlen,
[31] Fix | Delete
const unsigned char *k)
[32] Fix | Delete
__attribute__ ((warn_unused_result)) __attribute__ ((nonnull(1, 4)));
[33] Fix | Delete
[34] Fix | Delete
/* ------------------------------------------------------------------------- */
[35] Fix | Delete
[36] Fix | Delete
typedef struct crypto_auth_hmacsha512_state {
[37] Fix | Delete
crypto_hash_sha512_state ictx;
[38] Fix | Delete
crypto_hash_sha512_state octx;
[39] Fix | Delete
} crypto_auth_hmacsha512_state;
[40] Fix | Delete
[41] Fix | Delete
SODIUM_EXPORT
[42] Fix | Delete
size_t crypto_auth_hmacsha512_statebytes(void);
[43] Fix | Delete
[44] Fix | Delete
SODIUM_EXPORT
[45] Fix | Delete
int crypto_auth_hmacsha512_init(crypto_auth_hmacsha512_state *state,
[46] Fix | Delete
const unsigned char *key,
[47] Fix | Delete
size_t keylen) __attribute__ ((nonnull));
[48] Fix | Delete
[49] Fix | Delete
SODIUM_EXPORT
[50] Fix | Delete
int crypto_auth_hmacsha512_update(crypto_auth_hmacsha512_state *state,
[51] Fix | Delete
const unsigned char *in,
[52] Fix | Delete
unsigned long long inlen) __attribute__ ((nonnull(1)));
[53] Fix | Delete
[54] Fix | Delete
SODIUM_EXPORT
[55] Fix | Delete
int crypto_auth_hmacsha512_final(crypto_auth_hmacsha512_state *state,
[56] Fix | Delete
unsigned char *out) __attribute__ ((nonnull));
[57] Fix | Delete
[58] Fix | Delete
SODIUM_EXPORT
[59] Fix | Delete
void crypto_auth_hmacsha512_keygen(unsigned char k[crypto_auth_hmacsha512_KEYBYTES])
[60] Fix | Delete
__attribute__ ((nonnull));
[61] Fix | Delete
[62] Fix | Delete
#ifdef __cplusplus
[63] Fix | Delete
}
[64] Fix | Delete
#endif
[65] Fix | Delete
[66] Fix | Delete
#endif
[67] Fix | Delete
[68] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function