1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_sign/rainbowIa-classic/clean/utils_hash.c

56 lines
1.3 KiB
C
Raw Normal View History

/// @file utils_hash.c
/// @brief the adapter for SHA2 families.
///
///
2019-06-03 20:51:05 +01:00
#include "rainbow_config.h"
#include "sha2.h"
#include "utils_hash.h"
static inline
2019-06-03 21:12:37 +01:00
int _hash( unsigned char *digest, const unsigned char *m, size_t mlen ) {
sha256(digest, m, mlen);
return 0;
}
static inline
2019-06-03 21:12:37 +01:00
int expand_hash(unsigned char *digest, size_t n_digest, const unsigned char *hash) {
if ( _HASH_LEN >= n_digest ) {
2019-06-03 21:12:37 +01:00
for (size_t i = 0; i < n_digest; i++) {
digest[i] = hash[i];
}
return 0;
}
2019-06-03 21:12:37 +01:00
for (size_t i = 0; i < _HASH_LEN; i++) {
digest[i] = hash[i];
}
n_digest -= _HASH_LEN;
2019-06-03 21:12:37 +01:00
while (_HASH_LEN <= n_digest ) {
_hash( digest + _HASH_LEN, digest, _HASH_LEN );
n_digest -= _HASH_LEN;
digest += _HASH_LEN;
}
unsigned char temp[_HASH_LEN];
if ( n_digest ) {
_hash( temp, digest, _HASH_LEN );
2019-06-03 21:12:37 +01:00
for (size_t i = 0; i < n_digest; i++) {
digest[_HASH_LEN + i] = temp[i];
}
}
return 0;
}
2019-06-03 21:12:37 +01:00
int PQCLEAN_RAINBOWIACLASSIC_CLEAN_hash_msg(unsigned char *digest,
size_t len_digest,
const unsigned char *m,
size_t mlen) {
unsigned char buf[_HASH_LEN];
2019-06-03 21:12:37 +01:00
_hash(buf, m, mlen);
return expand_hash(digest, len_digest, buf);
}