mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-24 07:28:10 +00:00
Merge branch 'master' of https://github.com/hashcat/hashcat
This commit is contained in:
commit
b323682185
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
// important notes on this:
|
// important notes on this:
|
||||||
// input buf unused bytes needs to be set to zero
|
// 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 needs 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 64 byte aligned when using md5_update()
|
||||||
|
|
||||||
typedef struct md4_ctx
|
typedef struct md4_ctx
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
// important notes on this:
|
// important notes on this:
|
||||||
// input buf unused bytes needs to be set to zero
|
// 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 needs 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 64 byte aligned when using md5_update()
|
||||||
|
|
||||||
typedef struct md5_ctx
|
typedef struct md5_ctx
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
// important notes on this:
|
// important notes on this:
|
||||||
// input buf unused bytes needs to be set to zero
|
// 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 needs 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 64 byte aligned when using ripemd160_update()
|
||||||
|
|
||||||
typedef struct ripemd160_ctx
|
typedef struct ripemd160_ctx
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
// important notes on this:
|
// important notes on this:
|
||||||
// input buf unused bytes needs to be set to zero
|
// 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 needs 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 64 byte aligned when using md5_update()
|
||||||
|
|
||||||
typedef struct sha1_ctx
|
typedef struct sha1_ctx
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
// important notes on this:
|
// important notes on this:
|
||||||
// input buf unused bytes needs to be set to zero
|
// 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 needs 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 64 byte aligned when using md5_update()
|
||||||
|
|
||||||
__constant u32a k_sha256[64] =
|
__constant u32a k_sha256[64] =
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
// important notes on this:
|
// important notes on this:
|
||||||
// input buf unused bytes needs to be set to zero
|
// 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 needs 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 128 byte aligned when using sha512_update()
|
||||||
|
|
||||||
__constant u64a k_sha512[80] =
|
__constant u64a k_sha512[80] =
|
||||||
{
|
{
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
// important notes on this:
|
// important notes on this:
|
||||||
// input buf unused bytes needs to be set to zero
|
// 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 needs 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 64 byte aligned when using md5_update()
|
||||||
|
|
||||||
#define R 10
|
#define R 10
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user