英文:
Bouncy Castle FIPS mode for PKCS#12 KeyStore Format
问题
Bouncy Castle FIPS是否支持“PKCS12”作为KeyStore/trustStore?我在某处读到,在批准的模式下,它不支持PKCS#12格式,但在非批准模式下支持(通常使用的库)。
英文:
Does Bouncy Castle FIPS support "PKCS12"
as KeyStore/trustStore? I read somewhere that in the approved mode it doesn't support PKCS#12 format but that it is supported in non approved mode (the generally used libraries).
答案1
得分: 2
从BC-FJA用户指南的“7.密钥存储”部分引用:
> 在批准模式下,不支持PKCS12密钥存储
> 因为PKCS#12标准中需要用于PBE密钥生成的算法。
只有在非批准模式下运行的线程才能使用它。
英文:
Quoting from the BC-FJA user guide, section "7. Key Stores":
> The PKCS12 key store is not available in approved-mode of operation
> due to the algorithms required for PBE key generation in the PKCS#12
> standard.
It is available only to threads that are not running in approved-mode.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论