我想创建一个带有普通输入数据(如字符串和过期)的哈希,例如:
伪代码:
key = 'golf';
expiration = 5; //seconds
hash = md5(key, 5); // example.: 312abc3
result = check_hash(hash, key) // => true
// pass five seconds
result = check_hash(hash, key) // => false
有没有办法只用哈希值来做到这一点?
我想创建一个带有普通输入数据(如字符串和过期)的哈希,例如:
伪代码:
key = 'golf';
expiration = 5; //seconds
hash = md5(key, 5); // example.: 312abc3
result = check_hash(hash, key) // => true
// pass five seconds
result = check_hash(hash, key) // => false
有没有办法只用哈希值来做到这一点?