Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/backends/nntpchan-daemon/libnntpchan/crypto_old.hpp

29 lines
538 B
C++
Raw Normal View History

#ifndef NNTPCHAN_CRYPTO_OLD_HPP
#define NNTPCHAN_CRYPTO_OLD_HPP
#include <cstdint>
#include <cstdlib>
extern "C" {
typedef struct
{
2017-10-17 19:29:56 +05:00
uint32_t state[5];
uint32_t count[2];
unsigned char buffer[64];
} SHA1_CTX;
2017-10-17 19:29:56 +05:00
void SHA1Transform(uint32_t state[5], const unsigned char buffer[64]);
2017-10-17 19:29:56 +05:00
void SHA1Init(SHA1_CTX *context);
void SHA1Update(SHA1_CTX *context, const unsigned char *data, uint32_t len);
void SHA1Final(unsigned char digest[20], SHA1_CTX *context);
void sha1(uint8_t *hash_out, const uint8_t *str, size_t len);
}
#endif