문제

Can a single file contain multiple DER encoded certificates. I have seen CA bundle file, which is in PEM format (containing multiple BEGIN and END), but is the same possible for DER encoded certs?

도움이 되었습니까?

해결책

Of course you can concatenate multiple DER files, but the result won't be readable by any software except yours.

If you need multiple certificates in binary form for whatever reason, there exists PKCS#7 format in which you can store multiple certificates without private keys. Then you can use PKCS#12 for storing multiple certificates, encrypted and optionally with private keys.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top