Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ph7.c
Original file line number Diff line number Diff line change
Expand Up @@ -35215,7 +35215,7 @@ PH7_PRIVATE void MD5Final(unsigned char digest[16], MD5Context *ctx){
MD5Transform(ctx->buf, (sxu32*)ctx->in);
byteReverse((unsigned char *)ctx->buf, 4);
SyMemcpy(ctx->buf,digest,0x10);
SyZero(ctx,sizeof(ctx)); /* In case it's sensitive */
SyZero(ctx,sizeof(*ctx)); /* In case it's sensitive */
}
#undef F1
#undef F2
Expand Down