标签: php
我想在PHP中使用Base64格式的SHA-512编码文本。 我已经知道如何使用SHA-512编码哈希。 如何将其编码为Base64格式?
$pass = mypass; $encodedPass = hash('sha512', $pass);