我在Hashids
项目中使用http://hashids.org/python/(Django
)。
我想创建固定长度的哈希。
但Hashids
只支持min_length
:
hash_id = Hashids(
salt=os.environ.get("SALT"),
min_length=10,
)
如何设置hash_id
的固定长度(比方说,10个字符)?
您可以在Hashids中设置“min_length”
例如:
hashids = Hashids(min_length=16, salt="my salt")
hashid = hashids.encode(1) # '4q2VolejRejNmGQB'
有关更多详细信息,请单击here
虽然我没有使用该库的python版本,但我仍然觉得我可以回答,因为我维护.NET版本并且他们大多数都使用相同的算法。
只是逻辑地考虑这个问题,修复散列的长度(或设置最大长度)并允许用户定义字母和盐,限制了散列的可能变化,因此也限制了可以编码的数字。
我猜这就是为什么今天的图书馆无法实现的原因。
在php laravel中,这可以实现如下所示。
<?php
namespace App\Hashing;
use Hashids\Hashids;
class Hash {
private $salt_key;
private $min_length;
private $hashid;
public function __construct(){
$this->salt_key = '5OtYLj/PtkLOpQewWdEj+jklT+oMjlJY7=';
$this->min_length = 15;
$this->hashid = new Hashids($this->salt_key, $this->min_length);
}
public function encodeId($id){
$hashed_id = $this->hashid->encode($id);
return $hashed_id;
}
public function decodeId($hashed_id){
$id = $this->hashid->decode($hashed_id);
return $id;
}
}
$hash = new Hash();
$hashed_id = $hash->encodeId(1);
echo '<pre>';
print_r($hashed_id);
echo '</pre>';
echo "<pre>";
$id = $hash->decodeId($hashed_id);
print_r($id[0]);
echo "</pre>";