sodium_bin2base64
PHP Manual
PHP Manual»Sodium 函数»sodium_bin2base64

sodium_bin2base64

(PHP 7 >= 7.2.0, PHP 8)

sodium_bin2base64Encodes a raw binary string with base64.

说明

function sodium_bin2base64(#[\SensitiveParameter]string $string, int $id): string

Converts a raw binary string into a base64-encoded string. Unlike base64_encode(), sodium_bin2base64() is constant-time (a property that is important for any code that touches cryptographic inputs, such as plaintexts or keys) and supports multiple character sets.

参数

string
Raw binary string.
id

返回值

Base64-encoded string.

To Top