mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-26 09:58:16 +00:00
Merge pull request #1289 from philsmd/master
minor typo fixed in comment for the new update() functions
This commit is contained in:
commit
c7861f2197
@ -1,8 +1,8 @@
|
||||
|
||||
// important notes on this:
|
||||
// input buf unused bytes needs to be set to zero
|
||||
// input buf need to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf need to be 64 byte aligned when usin md5_update()
|
||||
// input buf needs to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf needs to be 64 byte aligned when using md5_update()
|
||||
|
||||
typedef struct md4_ctx
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
|
||||
// important notes on this:
|
||||
// input buf unused bytes needs to be set to zero
|
||||
// input buf need to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf need to be 64 byte aligned when usin md5_update()
|
||||
// input buf needs to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf needs to be 64 byte aligned when using md5_update()
|
||||
|
||||
typedef struct md5_ctx
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
|
||||
// important notes on this:
|
||||
// input buf unused bytes needs to be set to zero
|
||||
// input buf need to be in algorithm native byte order (ripemd160 = LE, sha1 = BE, etc)
|
||||
// input buf need to be 64 byte aligned when usin ripemd160_update()
|
||||
// input buf needs to be in algorithm native byte order (ripemd160 = LE, sha1 = BE, etc)
|
||||
// input buf needs to be 64 byte aligned when using ripemd160_update()
|
||||
|
||||
typedef struct ripemd160_ctx
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
|
||||
// important notes on this:
|
||||
// input buf unused bytes needs to be set to zero
|
||||
// input buf need to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf need to be 64 byte aligned when usin md5_update()
|
||||
// input buf needs to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf needs to be 64 byte aligned when using md5_update()
|
||||
|
||||
typedef struct sha1_ctx
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
|
||||
// important notes on this:
|
||||
// input buf unused bytes needs to be set to zero
|
||||
// input buf need to be in algorithm native byte order (md5 = LE, sha256 = BE, etc)
|
||||
// input buf need to be 64 byte aligned when usin md5_update()
|
||||
// input buf needs to be in algorithm native byte order (md5 = LE, sha256 = BE, etc)
|
||||
// input buf needs to be 64 byte aligned when using md5_update()
|
||||
|
||||
__constant u32a k_sha256[64] =
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
|
||||
// important notes on this:
|
||||
// input buf unused bytes needs to be set to zero
|
||||
// input buf need to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf need to be 128 byte aligned when usin sha512_update()
|
||||
// input buf needs to be in algorithm native byte order (md5 = LE, sha1 = BE, etc)
|
||||
// input buf needs to be 128 byte aligned when using sha512_update()
|
||||
|
||||
__constant u64a k_sha512[80] =
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
|
||||
// important notes on this:
|
||||
// input buf unused bytes needs to be set to zero
|
||||
// input buf need to be in algorithm native byte order (md5 = LE, sha256 = BE, etc)
|
||||
// input buf need to be 64 byte aligned when usin md5_update()
|
||||
// input buf needs to be in algorithm native byte order (md5 = LE, sha256 = BE, etc)
|
||||
// input buf needs to be 64 byte aligned when using md5_update()
|
||||
|
||||
#define R 10
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user