Generates a New EdDSA Ed25519 Key Pair: Private Key and Public Key
public staticfunctioned25519SignData (
string$privateKey,
string$publicKey,
string$message
) {} :: ARRAY
@return: {ARRAY} [ err, mode, signatureB64 ]
@param: {STRING} $privateKey: The Private Key (Base64)
@param: {STRING} $publicKey: The Public Key (Base64)
@param: {STRING} $message: The Message to be Signed
Sign a Message using EdDSA Ed25519
public staticfunctioned25519VerifySignedData (
string$publicKey,
string$signatureB64,
string$message
) {} :: ARRAY
@return: {ARRAY} [ err, mode, verifyResult ] ; the verifyResult must be TRUE if verified, otherwise may return NULL or INTEGER
@param: {STRING} $publicKey: The Public Key (Base64)
@param: {STRING} $signatureB64: The Signature (Base64)
@param: {STRING} $message: The Message to be verified with the signature
Verify the Signature of a previous Message using EdDSA Ed25519
class Properties
class Constants
documentation generated on: 2026-01-14 01:50:49 +0000
Supports: Ed25519