我使用了以下模块
https://github.com/ueno/ruby-gpgme
我的加密代码库是这样的:
def encrypt_sign(
plaintext,
recipient_pubkey,
sender_privkey,
binary: nil,
password: nil
)
in_a_directory(binary) do
options = pinentry_mode(password)
GPGME::Ctx.new(options) do |ctx|
import(sender_privkey)
import(recipient_pubkey)
ctx.add_signer(*(find(sender_privkey, :secret)))
ctx.encrypt_sign(
find(recipient_pubkey, :public),
data(plaintext),
data,
GPGME::ENCRYPT_ALWAYS_TRUST
).to_s
end
end
end
我不知道如何输入文件路径而不是纯文本文件。
任何建议表示赞赏。