3
。當我計算每個函數的散列時,我會得到不同的結果。爲什麼digest和PKI.digest返回不同的散列?例如,
PKI::PKI.digest("hola", "MD5")
digest::digest("hola", "md5")
。當我計算每個函數的散列時,我會得到不同的結果。爲什麼digest和PKI.digest返回不同的散列?例如,
PKI::PKI.digest("hola", "MD5")
digest::digest("hola", "md5")
使用serialize = FALSE
爲digest
。
> PKI::PKI.digest("hola", "MD5")
[1] 4d 18 63 21 c1 a7 f0 f3 54 b2 97 e8 91 4a b2 40
> digest::digest("hola", "md5", serialize=FALSE)
[1] "4d186321c1a7f0f354b297e8914ab240"
digest
的幫助頁面聲明輸入是默認序列化的。
不能說更好自己:) –
謝謝。有用。 – kintero