java - Possible to store encrypted credentials in a PKCS12 keystore? -
i trying find way can ensure security of credentials within system. 1 requirement once passwords encrypted need able provide api can used both java , c projects.
1 way achieve have pkcs12 keystore works not java (unlike jks) other languages.
question can pkcs12 keystore used store encrypted passwords?
no, pkcs#12 key store cannot used passwords. although officially pkcs#12 allows personal secrets stored in secretbag
format of such bag not specified. you'll need define own key store protocol if want store passwords.
Comments
Post a Comment