You are here

public static function ParagonIE_Sodium_Crypto::sign in Automatic Updates 8

Same name and namespace in other branches
  1. 7 vendor/paragonie/sodium_compat/src/Crypto.php \ParagonIE_Sodium_Crypto::sign()

Attached Ed25519 signature. (Returns a signed message.)

@internal Do not use this directly. Use ParagonIE_Sodium_Compat.

Parameters

string $message:

string $sk:

Return value

string

Throws

SodiumException

TypeError

1 call to ParagonIE_Sodium_Crypto::sign()
ParagonIE_Sodium_Compat::crypto_sign in vendor/paragonie/sodium_compat/src/Compat.php
Returns a signed message. You probably want crypto_sign_detached() instead, which only returns the signature.

File

vendor/paragonie/sodium_compat/src/Crypto.php, line 1618

Class

ParagonIE_Sodium_Crypto
Class ParagonIE_Sodium_Crypto

Code

public static function sign($message, $sk) {
  return ParagonIE_Sodium_Core_Ed25519::sign($message, $sk);
}