rcpp_framework/crypto_backends/hash_hashlib/hlib_sha256.h

31 lines
607 B
C
Raw Permalink Normal View History

#ifndef HASHLIB_SHA256_H
#define HASHLIB_SHA256_H
#include "crypto/hash/sha256.h"
#include "./hash-library/sha256.h"
class HashLibSHA256 : public SHA256 {
public:
2021-11-01 19:16:43 +01:00
String compute(const void *data, size_t num_bytes);
String compute(const String &text);
void add(const void *data, size_t num_bytes);
2021-11-01 19:16:43 +01:00
String get_hash();
void get_hash(unsigned char *buffer, size_t buffer_len);
void reset();
static void set_as_active_implementation();
static void unset_as_active_implementation();
HashLibSHA256();
~HashLibSHA256();
protected:
static Ref<SHA256> _creation_func();
_SHA256 hasher;
};
#endif