STREEBOG_CTX
.ctx_size = sizeof(EVP_MD *) + sizeof(STREEBOG_CTX),
.ctx_size = sizeof(EVP_MD *) + sizeof(STREEBOG_CTX),
streebog_single_block(STREEBOG_CTX *ctx, const unsigned char *in, size_t num)
streebog_block_data_order(STREEBOG_CTX *ctx, const unsigned char *in,
STREEBOG512_Final(unsigned char *md, STREEBOG_CTX *c)
STREEBOG256_Final(unsigned char *md, STREEBOG_CTX * c)
STREEBOG512_Update(STREEBOG_CTX *c, const void *_data, size_t len)
STREEBOG256_Update(STREEBOG_CTX *c, const void *data, size_t len)
STREEBOG512_Transform(STREEBOG_CTX *c, const unsigned char *data)
STREEBOG256_Init(STREEBOG_CTX *c)
STREEBOG512_Init(STREEBOG_CTX *c)
STREEBOG_CTX c;
STREEBOG_CTX c;
int STREEBOG256_Init(STREEBOG_CTX *c);
int STREEBOG256_Update(STREEBOG_CTX *c, const void *data, size_t len);
int STREEBOG256_Final(unsigned char *md, STREEBOG_CTX *c);
void STREEBOG256_Transform(STREEBOG_CTX *c, const unsigned char *data);
int STREEBOG512_Init(STREEBOG_CTX *c);
int STREEBOG512_Update(STREEBOG_CTX *c, const void *data, size_t len);
int STREEBOG512_Final(unsigned char *md, STREEBOG_CTX *c);
void STREEBOG512_Transform(STREEBOG_CTX *c, const unsigned char *data);