mirror of
https://github.com/invite-frey/is-woo-payment-fps.git
synced 2025-04-05 14:00:44 +00:00
Fixed checksum from lower case to upper case letters.
This commit is contained in:
parent
db031403fd
commit
1a8d764d5c
@ -15,7 +15,7 @@ if( !class_exists('ITS_FPS_QRCodeData') ){
|
||||
public function getDataString(){
|
||||
$msg = $this->emvString($this->data);
|
||||
$crc = $this->pad(dechex($this->crc16ccitt($msg)),4);
|
||||
return $msg . $crc;
|
||||
return $msg . strtoupper($crc);
|
||||
}
|
||||
|
||||
private function pad($s, $size = 2) {
|
||||
|
Loading…
Reference in New Issue
Block a user