23 #ifndef MBEDTLS_SHA512_H 24 #define MBEDTLS_SHA512_H 26 #if !defined(MBEDTLS_CONFIG_FILE) 29 #include MBEDTLS_CONFIG_FILE 35 #if !defined(MBEDTLS_SHA512_ALT) 108 #include "sha512_alt.h" 124 unsigned char output[64],
int is384 );
Configuration options (set of defines)
void mbedtls_sha512_init(mbedtls_sha512_context *ctx)
Initialize SHA-512 context.
Definition: sha512.c:92
void mbedtls_sha512_starts(mbedtls_sha512_context *ctx, int is384)
SHA-512 context setup.
Definition: sha512.c:114
GLenum GLenum GLenum input
Definition: glext.h:9938
void mbedtls_sha512_process(mbedtls_sha512_context *ctx, const unsigned char data[128])
Definition: sha512.c:196
void mbedtls_sha512_update(mbedtls_sha512_context *ctx, const unsigned char *input, size_t ilen)
SHA-512 process buffer.
Definition: sha512.c:272
AVFormatContext * ctx
Definition: record_ffmpeg.c:247
static uint64_t state[MAX_PADS]
Definition: xenon360_input.c:33
GLenum src
Definition: glext.h:6980
int is384
Definition: sha512.h:50
SHA-512 context structure.
Definition: sha512.h:45
std::string output
Definition: Config.FromFile.cpp:44
int mbedtls_sha512_self_test(int verbose)
Checkup routine.
Definition: sha512.c:448
void mbedtls_sha512(const unsigned char *input, size_t ilen, unsigned char output[64], int is384)
Output = SHA-512( input buffer )
Definition: sha512.c:362
void mbedtls_sha512_finish(mbedtls_sha512_context *ctx, unsigned char output[64])
SHA-512 final digest.
Definition: sha512.c:324
GLenum GLenum dst
Definition: glext.h:6980
Definition: video4linux2.c:51
unsigned __int64 uint64_t
Definition: stdint.h:136
void mbedtls_sha512_free(mbedtls_sha512_context *ctx)
Clear SHA-512 context.
Definition: sha512.c:97
void mbedtls_sha512_clone(mbedtls_sha512_context *dst, const mbedtls_sha512_context *src)
Clone (the state of) a SHA-512 context.
Definition: sha512.c:105