Skip to content

Releases: baibaratsky/php-wmsigner

2.0.0

12 Jun 14:41
Compare
Choose a tag to compare

Key don’t have to be a file

// Key is in file
$signer = new Signer('wmid', '/path/to/key/file.kwm', 'password');

// Key from DB, cache, or something else
$key = getKeyDataFromStorage();
$signer = new Signer('wmid', $key, 'password');

1.1.5

12 Jun 12:45
Compare
Choose a tag to compare

Fixed the odd-length password case

1.1.4

10 Jan 17:16
Compare
Choose a tag to compare

Fixed #7 the mbstring.func_overload issue

1.1.3

30 Apr 17:57
Compare
Choose a tag to compare
Fixed #5: Some key digests are encrypted using only the first half of…

… the password

1.1.2

24 Apr 10:37
Compare
Choose a tag to compare
Merge pull request #4 from baibaratsky/test

Fixed #3: “Maximum function nesting level of '100' reached, aborting!” when using BCMath

1.1.1

20 Apr 19:36
Compare
Choose a tag to compare

Fixed the BCMath problem causing wrong results on some systems

1.1

27 Mar 17:10
Compare
Choose a tag to compare
1.1

GMP is not required anymore

1.0

18 Jan 13:27
Compare
Choose a tag to compare
1.0
v1.0.0

Readme fixed