Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Linux 上,我需要验证 PKCS#7 签名文件的签名并使用 Python 及其标准库检索其原始内容。
目前,我可以使用 OpenSSL 终端实用程序验证此文件的内容(并检索其实际内容),如下所示:
openssl smime -verify -in myfile.xml -inform DER -noverify
我从朋友那里收到了这个命令。我不太了解选项和指令。有没有办法在不使用任何 3rd 方库的情况下使用 Python 做到这一点?
提前致谢。