Skip to content

Commit

Permalink
SW-446: updated generateHash Service to use SHA-384 instead of md5
Browse files Browse the repository at this point in the history
  • Loading branch information
fatchip-Stefan committed Jan 31, 2024
1 parent 5d0c839 commit f3d9521
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function generate(Payone_ClientApi_Request_Interface $request, $securityK
$hashString .= $requestData[$key];
}
$hashString .= $securityKey;
$hash = md5($hashString);
$hash = hash('sha384',$hashString);
return $hash;
}
}

0 comments on commit f3d9521

Please sign in to comment.