Files
allwpilib/wpiutil/src/main/native/include/wpi/sha1.h

53 lines
1.0 KiB
C
Raw Normal View History

/*
sha1.hpp - header of
============
SHA-1 in C++
============
100% Public Domain.
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>
Safety fixes
-- Eugene Hopkinson <slowriot at voxelstorm dot com>
*/
2018-05-13 17:09:56 -07:00
#ifndef WPIUTIL_WPI_SHA1_H_
#define WPIUTIL_WPI_SHA1_H_
2017-10-21 20:31:20 -07:00
#include <stdint.h>
#include <string>
#include <string_view>
namespace wpi {
2017-10-21 20:31:20 -07:00
template <typename T>
class SmallVectorImpl;
class raw_istream;
2017-10-21 20:31:20 -07:00
class SHA1 {
public:
SHA1();
void Update(std::string_view s);
2017-10-21 20:31:20 -07:00
void Update(raw_istream& is);
std::string Final();
std::string_view Final(SmallVectorImpl<char>& buf);
std::string_view RawFinal(SmallVectorImpl<char>& buf);
static std::string FromFile(std::string_view filename);
2017-10-21 20:31:20 -07:00
private:
uint32_t digest[5];
unsigned char buffer[64];
size_t buf_size;
uint64_t transforms;
};
} // namespace wpi
2018-05-13 17:09:56 -07:00
#endif // WPIUTIL_WPI_SHA1_H_