yosys/libs/sha1/sha1.h

60 lines
1.5 KiB
C
Raw Normal View History

2014-08-01 12:01:10 -05:00
/*
sha1.h - header of
2014-08-01 12:01:10 -05:00
============
SHA-1 in C++
============
2014-08-01 12:01:10 -05:00
100% Public Domain.
2014-08-01 12:01:10 -05:00
Original C Code
-- Steve Reid <steve@edmweb.com>
Small changes to fit into bglibs
-- Bruce Guenter <bruce@untroubled.org>
Translation to simpler C++ Code
-- Volker Grabsch <vog@notjusthosting.com>
Fixing bugs and improving style
-- Eugene Hopkinson <slowriot at voxelstorm dot com>
2014-08-01 12:01:10 -05:00
*/
2014-08-01 12:01:10 -05:00
#ifndef SHA1_HPP
#define SHA1_HPP
2014-08-01 12:01:10 -05:00
#include <iostream>
#include <string>
2014-08-01 12:01:10 -05:00
class SHA1
{
public:
SHA1();
void update(const std::string &s);
void update(std::istream &is);
std::string final();
static std::string from_file(const std::string &filename);
2014-08-01 12:01:10 -05:00
private:
typedef unsigned long int uint32; /* just needs to be at least 32bit */
typedef unsigned long long uint64; /* just needs to be at least 64bit */
2014-08-01 12:01:10 -05:00
static const unsigned int DIGEST_INTS = 5; /* number of 32bit integers per SHA1 digest */
static const unsigned int BLOCK_INTS = 16; /* number of 32bit integers per SHA1 block */
static const unsigned int BLOCK_BYTES = BLOCK_INTS * 4;
2014-08-01 12:01:10 -05:00
uint32 digest[DIGEST_INTS];
std::string buffer;
uint64 transforms;
2014-08-01 12:01:10 -05:00
void reset();
void transform(uint32 block[BLOCK_BYTES]);
static void read(std::istream &is, std::string &s, size_t max);
static void buffer_to_block(const std::string &buffer, uint32 block[BLOCK_INTS]);
2014-08-01 12:01:10 -05:00
};
2014-08-01 12:01:10 -05:00
std::string sha1(const std::string &string);
2014-08-01 12:01:10 -05:00
#endif /* SHA1_HPP */