Jay
Jay

Reputation: 24895

How to parse a PKCS12 file programmatically in Java?

How to parse a PKCS12 file programmatically in Java?

When I tried to use KeyStore APIs in the my program, I got an "No Such Algorithm Exception" while decrypting Authsafe.

But, apart from using KeyStore, is there any other way to parse PKCS12 in Java?

Upvotes: 1

Views: 6016

Answers (1)

Miguel Rodrigues
Miguel Rodrigues

Reputation: 927

Take a look at Bouncy Castle JAVA Api.

Here's an example for PKCS 12

Upvotes: 4

Related Questions