如何将SHA256产生的十六进制代码转换回SHA256对象?
$builder
->add(
'neighbourhood',
EntityType::class,
[
'class' => Neighbourhood::class,
'label' => 'form.neighbourhood.label',
'translation_domain' => 'Default',
'required' => false,
'multiple' => true,
'placeholder' => 'form.neighbourhood.all'
]
);
hexcode包含数据摘要,现在有什么方法可以将hexcode转换回SHA256对象吗?
是否可以使用十六进制代码生成原始摘要对象?
digest = SHA256.new() # digest empty
digest.update(str(data).encode()) # digest has string hashed
hex_code = digest.hexcode()
有什么方法可以使用digest.hexcode()并生成哈希对象吗?