是否有R函数来取消哈希数据(相当于Python中的“ hashlib”函数)?

时间:2019-05-06 01:04:51

标签: r hash

我正在尝试获取密码的SHA-256哈希。我既有哈希数据所在的zip文件,又有密码。

试图在R中实现类似以下内容,但找不到任何合适的函数以编程方式检索数据。

# Declaring the Password
password = "XXXX"
data = "data.zip"

# Obtaining an SHA-256 hash of the password
import hashlib
value = hashlib.sha256(str.encode(password)).hexdigest().lower()

谢谢

0 个答案:

没有答案