sodium_unpad

Advertisement

Syntax Syntax

sodium_unpad( string $padded, int $blockSize )

Parameters Parameters

$padded

(Required)

$blockSize

(Required)

Return Return

(int)

Source Source

File: wp-includes/sodium_compat/lib/php72compat.php

    function sodium_unpad($padded, $blockSize)
    {
        return ParagonIE_Sodium_Compat::unpad($padded, $blockSize, true);
    }

Advertisement

See also See also

Advertisement

Leave a Reply