Package org.mozilla.jss.pkcs12
Class PFX
java.lang.Object
org.mozilla.jss.pkcs12.PFX
- All Implemented Interfaces:
ASN1Value
The top level ASN.1 structure for a PKCS #12 blob.
The general procedure for creating a PFX blob is as follows:
- Create instances of
SafeBagcontaining things such as private keys, certificates, or arbitrary secrets. - Store the SafeBags in one or more SEQUENCEs. Each SEQUENCE is called a SafeContents.
- Create an AuthenticatedSafes. Store each SafeContents into the
AuthenticatedSafes with
addEncryptedSafeContentsoraddSafeContents.Standard procedure for browsers is for the AuthenticatedSafes to contain two instances of SafeContents, one encrypted and the other not. Anything you want encrypted can go in the encrypted SafeContents, and anything you want in plaintext can go in the regular SafeContents. Keep in mind that private key SafeBags usually consist of an EncryptedPrivateKeyInfo, which has its own (strong) encryption, in which case it is not essential that the SafeContents containing the private key also be encrypted.
- Create a PFX containing the AuthenticatedSafes instance, using the
PFX(AuthenticatedSafes)constructor. - Add a MAC to the PFX so it can be verified, using
PFX.computeMacData.
- Use a
PFX.Templateto decode the ASN.1 into aPFXobject. - Check the output of
PFX.verifyAuthSafesto verify the MAC on the PFX. - Use
PFX.getAuthSafesto extract the AuthenticatedSafes instance. - Use
AuthenticatedSafes.getSafeContentsAtto grab the SafeContents objects in the AuthenticatedSafes. - Each SafeContents is a SEQUENCE of SafeBags, each of which may contain a private key, cert, or arbitrary secret.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA Template for decoding a BER-encoded PFX. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate AuthenticatedSafesstatic final intThe default number of iterations to use when generating the MAC.private byte[]private MacDataprivate static final Tagprivate INTEGERprivate static final INTEGER -
Constructor Summary
ConstructorsConstructorDescriptionPFX(INTEGER version, AuthenticatedSafes authSafes, MacData macData) Creates a PFX with the given parameters.PFX(AuthenticatedSafes authSafes) Creates a PFX with the default version and no MacData.PFX(AuthenticatedSafes authSafes, MacData macData) Creates a PFX with the default version. -
Method Summary
Modifier and TypeMethodDescriptionvoidcomputeMacData(Password password, byte[] salt, int iterationCount) Computes the macData field and adds it to the PFX.voidencode(OutputStream ostream) Write this value's DER encoding to an output stream using its own base tag.voidencode(Tag implicitTag, OutputStream ostream) Write this value's DER encoding to an output stream using an implicit tag.Returns the MacData of this PFX, which is used to verify the contents.getTag()Returns the base tag for this type, not counting any tags that may be imposed on it by its context.static voidprivate voidsetEncodedAuthSafes(byte[] encodedAuthSafes) booleanverifyAuthSafes(Password password, StringBuffer reason) Verifies the HMAC on the authenticated safes, using the password provided.
-
Field Details
-
version
-
authSafes
-
macData
-
encodedAuthSafes
private byte[] encodedAuthSafes -
VERSION
-
DEFAULT_ITERATIONS
public static final int DEFAULT_ITERATIONSThe default number of iterations to use when generating the MAC. Currently, it is 1.- See Also:
-
TAG
-
-
Constructor Details
-
PFX
Creates a PFX with the given parameters. -
PFX
Creates a PFX with the default version. -
PFX
Creates a PFX with the default version and no MacData. The MacData can be added later withcomputeMacData.- See Also:
-
-
Method Details
-
getVersion
-
getAuthSafes
-
getMacData
Returns the MacData of this PFX, which is used to verify the contents. This field is optional. If it is not present, null is returned. -
setEncodedAuthSafes
private void setEncodedAuthSafes(byte[] encodedAuthSafes) -
verifyAuthSafes
Verifies the HMAC on the authenticated safes, using the password provided.- Parameters:
password- The password to use to compute the HMAC.reason- If supplied, the reason for the verification failure will be appended to this StringBuffer.- Returns:
- true if the MAC verifies correctly, false otherwise. If this PFX does not contain a MacData, returns false.
- Throws:
Exception
-
computeMacData
public void computeMacData(Password password, byte[] salt, int iterationCount) throws NotInitializedException, DigestException, NoSuchAlgorithmException, TokenException, CharConversionException Computes the macData field and adds it to the PFX. The macData field is a Message Authentication Code of the AuthenticatedSafes, and is used to prove the authenticity of the PFX.- Parameters:
password- The password to be used to create the password-based MAC.salt- The salt to be used. If null is passed in, a new salt will be created from a random source.iterationCount- The iteration count for the key generation. Use DEFAULT_ITERATIONS unless there's a need to be clever.- Throws:
NotInitializedExceptionDigestExceptionNoSuchAlgorithmExceptionTokenExceptionCharConversionException
-
getTag
Description copied from interface:ASN1ValueReturns the base tag for this type, not counting any tags that may be imposed on it by its context. -
encode
Description copied from interface:ASN1ValueWrite this value's DER encoding to an output stream using its own base tag.- Specified by:
encodein interfaceASN1Value- Parameters:
ostream- Output stream.- Throws:
IOException- If an error occurred.
-
encode
Description copied from interface:ASN1ValueWrite this value's DER encoding to an output stream using an implicit tag.- Specified by:
encodein interfaceASN1Value- Parameters:
implicitTag- Implicit tag.ostream- Output stream.- Throws:
IOException- If an error occurred.
-
main
-