JwaWincrypt/missing Hash sub ids
Brought to you by:
dezipaitor,
rweijnen
the following Has subids are missing in the
translation in line 254 of JwaWincrypt.pas:
#define ALG_SID_HASH_REPLACE_OWF 11
#define ALG_SID_SHA_256 12
#define ALG_SID_SHA_384 13
#define ALG_SID_SHA_512 14
the definitions could be added like this:
ALG_SID_HASH_REPLACE_OWF = 11;
{$EXTERNALSYM ALG_SID_HASH_REPLACE_OWF}
ALG_SID_SHA_256 = 12;
{$EXTERNALSYM ALG_SID_SHA_256}
ALG_SID_SHA_384 = 13;
{$EXTERNALSYM ALG_SID_SHA_384}
ALG_SID_SHA_512 = 14;
{$EXTERNALSYM ALG_SID_SHA_512}