gpt4 book ai didi

ruby - 在 Ruby on Rails 中解密 PKCS7

转载 作者:太空宇宙 更新时间:2023-11-03 17:47:34 26 4
gpt4 key购买 nike

我尝试解密 PKCS7 数据,但总是收到错误 OpenSSL::PKCS7::PKCS7Error - wrong content type on method "pkcs7.decrypt(key, cer)".

例子:

cer = OpenSSL::X509::Certificate.new(File.read("path/cert.cer"))
key = OpenSSL::PKey::RSA.new(File.read("path/private.key"), "111111")
crypted_data = File.read('path/pkcs7') # contains xml-file and signature "-----BEGIN PKCS7----- ... -----END PKCS7-----"
pkcs7 = OpenSSL::PKCS7.new(crypted_data)
decrypted_data = pkcs7.decrypt(key, cer) # error is here

需要帮助!如何从加密字符串中获取数据?

更新:在 bash 上,我可以通过以下代码解决此任务:

openssl smime -verify -noverify -inform PEM -nointern -certfile "path/cert.cer" -CAfile "path/cert.cer" < path/pkcs7

返回 xml 文件。

最佳答案

找到解决方案!!!

cert_store = OpenSSL::X509::Store.new
my_cert = OpenSSL::X509::Certificate.new(File.read("remote.cer"))
signature = OpenSSL::PKCS7.new(File.read('pkcs7-resp.file'))
signature.verify([my_cert], cert_store, nil, OpenSSL::PKCS7::NOVERIFY)
signature.data

关于ruby - 在 Ruby on Rails 中解密 PKCS7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32477436/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com