本文介绍了R中的单向哈希函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
R中是否有可重复的单向哈希函数?我会在Python中使用hashlib
:
Is there a repeatable one-way hash function in R? I'd use hashlib
in Python:
hashlib.sha224("This is my input").hexdigest()
推荐答案
如果安装了digest
pacakge,则可以
If you have the digest
pacakge installed, you can do
digest::digest("This is my input")
# [1] "2e936bb276abca8a9e46bd32c7bdc01e"
(默认情况下,结果以ASCII十六进制值形式返回).有关受支持的哈希算法的列表,请参见?digest
帮助页面.
(by default the result is returned as ASCII hex values). See the ?digest
help page for a list of supported hashing algorithms.
这篇关于R中的单向哈希函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!