我有以下内容:
def from_code(code, secret)
cipher = OpenSSL::Cipher::BF.new
cipher.decrypt
cipher.pkcs5_keyivgen(secret)
data = cipher.update(Base64.decode64(code + "\n"))
final = cipher.final
plaintext = data + final
plaintext
end
我的目标是使用 commons.binary 和 javax.crypto (或任何其他依赖项,这很好)实现完全相同,但仅在 Java 中。我在搞乱 javax.crypto 但我想我会在这里问。先感谢您。