ParagonIE_Sodium_Compat::crypto_shorthash

Advertisement

Summery Summery

Calculates a SipHash-2-4 hash of a message for a given key.

Syntax Syntax

ParagonIE_Sodium_Compat::crypto_shorthash( string $message, string $key )

Parameters Parameters

$message

(Required) Input message

$key

(Required) SipHash-2-4 key

Return Return

(string) Hash

Source Source

File: wp-includes/sodium_compat/src/Compat.php

    public static function crypto_shorthash($message, $key)
    {
        /* Type checks: */
        ParagonIE_Sodium_Core_Util::declareScalarType($message, 'string', 1);
        ParagonIE_Sodium_Core_Util::declareScalarType($key, 'string', 2);

        /* Input validation: */
        if (ParagonIE_Sodium_Core_Util::strlen($key) !== self::CRYPTO_SHORTHASH_KEYBYTES) {
            throw new SodiumException('Argument 2 must be CRYPTO_SHORTHASH_KEYBYTES long.');
        }

        if (self::useNewSodiumAPI()) {
            return sodium_crypto_shorthash($message, $key);
        }
        if (self::use_fallback('crypto_shorthash')) {
            return (string) call_user_func('\\Sodium\\crypto_shorthash', $message, $key);
        }
        if (PHP_INT_SIZE === 4) {
            return ParagonIE_Sodium_Core32_SipHash::sipHash24($message, $key);
        }
        return ParagonIE_Sodium_Core_SipHash::sipHash24($message, $key);
    }

Advertisement

Advertisement

Leave a Reply