如何设置Hashids的最大长度?

问题描述 投票:0回答:2

我在Hashids项目中使用http://hashids.org/python/Django)。

我想创建固定长度的哈希。

Hashids只支持min_length

hash_id = Hashids(
    salt=os.environ.get("SALT"),
    min_length=10,
)

如何设置hash_id的固定长度(比方说,10个字符)?

hash hashids
2个回答
1
投票

您可以在Hashids中设置“min_length”

例如:

hashids = Hashids(min_length=16, salt="my salt")
hashid = hashids.encode(1) # '4q2VolejRejNmGQB'

有关更多详细信息,请单击here


0
投票

虽然我没有使用该库的python版本,但我仍然觉得我可以回答,因为我维护.NET版本并且他们大多数都使用相同的算法。

只是逻辑地考虑这个问题,修复散列的长度(或设置最大长度)并允许用户定义字母和盐,限制了散列的可能变化,因此也限制了可以编码的数字。

我猜这就是为什么今天的图书馆无法实现的原因。


0
投票

在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>";
© www.soinside.com 2019 - 2024. All rights reserved.