我收到了以下代码:
require 'base64'
def Decrypt(rsaCipher, encryptedValue)
print base64.decode64(encryptedValue)
end
Decrypt("a", "b")
我收到错误消息in 'Decrypt': undefined local variable or method 'base64' for main:Object (NameError)'
。我究竟做错了什么?为什么Ruby不检测base64
库,即使我包含它?