public static function ParagonIE_Sodium_Crypto32::sign_detached in Automatic Updates 7
Same name and namespace in other branches
- 8 vendor/paragonie/sodium_compat/src/Crypto32.php \ParagonIE_Sodium_Crypto32::sign_detached()
Detached Ed25519 signature.
@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_Crypto32::sign_detached()
- ParagonIE_Sodium_Compat::crypto_sign_detached in vendor/
paragonie/ sodium_compat/ src/ Compat.php - Calculate the Ed25519 signature of a message and return ONLY the signature.
File
- vendor/
paragonie/ sodium_compat/ src/ Crypto32.php, line 1601
Class
- ParagonIE_Sodium_Crypto32
- Class ParagonIE_Sodium_Crypto
Code
public static function sign_detached($message, $sk) {
return ParagonIE_Sodium_Core32_Ed25519::sign_detached($message, $sk);
}