Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Convert test and export aggregates to SHA-256.
Make digest explicit in all signing operations rather than defaulting, for clarity. Switch over to requiring the java.security file to be *not* modified, instead referencing the Sun PKCS11 provider and the appropriate configuration file directly. Add a property defaulting system to allow things like the PKCS11 configuration file location property to be platform-specific, or specified by a non-source-controlled local override file (build.properties). This needs a little work to handle Linux for the Feitian card.
Showing
4 changed files
with
72 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# default.properties | ||
# | ||
# Default properties for all builds. Properties defined | ||
# here may be overridden in platform-specific properties files, | ||
# or in a machine-specific build.properties file. | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# macosx.properties | ||
# | ||
# Properties for Mac OS X builds. Properties defined here override | ||
# those defined in default.properties, but may be overridden by | ||
# properties defined in a machine-specific build.properties file. | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# | ||
# windows.properties | ||
# | ||
# Properties for Windows builds. Properties defined here override | ||
# those defined in default.properties, but may be overridden by | ||
# properties defined in a machine-specific build.properties file. | ||
# | ||
|
||
# | ||
# Location of the PKCS#11 configuration file for an ACOS5 card. | ||
# | ||
pkcs11.config = C\:\\pkcs11\\sdk18\\acs.cfg |