PHP routines for verifying Cryptocurrency signatures. Requires PHP 5.3.2 with either GMP or BC Math.
At present, Bitcoin, Bitcoin Gold, Litecoin, Dogecoin, Dash, DigiByte, Ripple, and Zcash Base58 addresses are supported. Other addresses of the same format can be added through the addrInfo function fairly easily.
The isMessageSignatureValid function now returns a string with results rather than throwing errors. Possible results are:
ValidThe Address matches the Message and Signature.InvalidThe Address does not match the Message and Signature.Invalid CoinThe Coin is not supported. Valid Coin values are: BTC, BCH, BTG, DOGE, DASH, DGB, LTC, XRP, or ZEC.Invalid Address LengthThe Decoded Address is not 20 bytes + Version Length (1 for most, 2 for Zcash).Invalid Address ChecksumThe last four bytes of the Decoded Address are not equal to the first four bytes of a double-sha256 hash of the Decoded Address.Invalid AddressThe Address Version is not supported.Invalid SignatureThe Signature could not be Base64 decoded.Invalid Signature LengthThe Decoded Signature was not 65 bytes long.Invalid Signature FlagsThe Signature's Recovery Flags were either negative or greater than 7.Invalid Public KeyThe attempt to determine the Public Key from the Message and Signature failed.