本文整理汇总了PHP中Str::hashSize方法的典型用法代码示例。如果您正苦于以下问题:PHP Str::hashSize方法的具体用法?PHP Str::hashSize怎么用?PHP Str::hashSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Str
的用法示例。
在下文中一共展示了Str::hashSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: crypt
/**
* Encrypt or decrypt a binary input string.
*
* @param string $input Input data to encrypt
* @param string $password Encryption/decryption key to use on input
* @param string $algo Hashing algo to generate keystream
*
* @return string
*/
public static function crypt($input, $password, $algo = 'sha512')
{
$chunks = \str_split($input, Str::hashSize($algo));
foreach ($chunks as $i => &$chunk) {
$chunk = $chunk ^ \hash($algo, $password . $i, true);
}
return \implode($chunks);
}
示例2: decrypt
/**
* Decrypt cyphertext
*
* @param string $cyphertext Cypher text to decrypt
* @param string $password Password that should be used to decrypt input data
* @param int $cost Number of HMAC iterations to perform on key
* @param string $cipher Mcrypt cipher
* @param string $mode Mcrypt mode
* @param string $algo Hashing algorithm to use for internal operations
*
* @return string|boolean Returns false on checksum validation failure
*/
public static function decrypt($cyphertext, $password, $cost = 0, $cipher = MCRYPT_RIJNDAEL_128, $mode = MCRYPT_MODE_CBC, $algo = 'sha256')
{
// Determine that size of the IV in bytes
$ivsize = \mcrypt_get_iv_size($cipher, $mode);
// Find the IV at the beginning of the cypher text
$iv = Str::substr($cyphertext, 0, $ivsize);
// Gather the checksum portion of the cypher text
$chksum = Str::substr($cyphertext, $ivsize, Str::hashSize($algo));
// Gather message portion of cyphertext after iv and checksum
$message = Str::substr($cyphertext, $ivsize + Str::hashSize($algo));
// Derive key from password
$key = self::key($password, $iv, $cost, $cipher, $mode, $algo);
// Calculate verification checksum
$verify = self::checksum($message, $iv, $key, $cipher, $mode, $algo);
// If checksum could not be verified return false
self::checksumVerify($verify, $chksum);
// Decrypt unpad return
return Pkcs7::unpad(\mcrypt_decrypt($cipher, $key, $message, $mode, $iv));
}