// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: sha1.cc,v 1.1 2001/03/06 05:03:49 jgg Exp $
+// $Id: sha1.cc,v 1.3 2001/05/13 05:15:03 jgg Exp $
/* ######################################################################
SHA1 - SHA-1 Secure Hash Algorithm.
/* Converts the hex string into a set of chars */
bool SHA1SumValue::Set(string Str)
{
- return Hex2Num(Str.begin(),Str.end(),Sum,sizeof(Sum));
+ return Hex2Num(Str,Sum,sizeof(Sum));
}
/*}}} */
{
uint32_t *state = (uint32_t *)State;
uint32_t *count = (uint32_t *)Count;
- uint8_t *buffer = (uint8_t *)Buffer;
// Apply the padding
if (Done == false)