Questions tagged [attributecertificate]
4 questions
2
votes
1 answer
X509AttributeCertificateHolder encode and decode
Does someone know how to encode/decode a X509AttributeCertificateHolder?
I tried the following code (att is the created X509AttributeCertificateHolder):
byte[] arr = att.getEncoded();
X509AttributeCertificateHolder holder = new…

Hakikat41
- 172
- 3
- 9
1
vote
1 answer
Store X509AttributeCertificateHolder object, especially attrCert local and open it
There is an option to store the X509Certificate local with the class JcaPEMWriter from the Bouncy Castle API. After storing the X509Certificate I can open it with openssl with the following command:
openssl x509 -in certificate.pem -text
I have the…

Hakikat41
- 172
- 3
- 9
0
votes
2 answers
Bouncy Castle AuthorityInfoAccess Extension
I'm trying to develop a X.509 Attribute Certificate generator with Bouncy Castle and I need to add an AuthorityInfoAccess extension. However, I can't find a non-deprecated way to do that!
The most-recent Bouncy Castle API Documentation doesn't show…

Ricardo Brunetto
- 3
- 3
0
votes
0 answers
Bouncycastle: X509AttributeCertificate deprecated
I use the X509V2AttributeCertificate from Bouncycastle. The problem is, that it is deprecated but I do not find any replacement for the exisiting (deprecated) code. Does someone know the new way?
My way: I use a X509AttributeCertificateHolder, this…

wake-0
- 3,918
- 5
- 28
- 45