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.
我正在编写一个模块,该模块将使用 RSA 来编码、解码和生成密钥。但是我在内核源代码(我的意思是 linux-kernel/crpyto/)中没有找到任何关于 RSA 的 API。
我不想将 OpenSSL 或类似的东西带入内核,因为这会花费很多时间。
加密模块公开了Linux Kernel Crypto API。RSA 支持存在于内核 3.7中。虽然实现仅限于签名验证。
更多信息