jdk-24/jdk/test/javax/crypto/SecretKeyFactory
Anthony Scarpino 941822bf15 8155973: Tighten jar checks
Reviewed-by: mullan, igerasim, ahgross
2016-07-21 10:33:56 -07:00
..
FailOverTest.java 6943119: Rebrand source copyright notices 2010-05-25 15:58:33 -07:00
FailOverTest.sh 8155973: Tighten jar checks 2016-07-21 10:33:56 -07:00
P1.jar Initial load 2007-12-01 00:00:00 +00:00
P1SecretKeyFactory.java 6943119: Rebrand source copyright notices 2010-05-25 15:58:33 -07:00
P2.jar Initial load 2007-12-01 00:00:00 +00:00
P2SecretKeyFactory.java 6943119: Rebrand source copyright notices 2010-05-25 15:58:33 -07:00
PBKDF2TranslateTest.java 8134984: Text files should end in exactly one newline 2015-09-02 14:11:50 -07:00
Provider1.java 8130181: Deprecate java.security.Provider(String, double, String), add Provider(Strin 2016-08-19 06:27:54 +00:00
Provider2.java 8130181: Deprecate java.security.Provider(String, double, String), add Provider(Strin 2016-08-19 06:27:54 +00:00
README.FailOverTest Initial load 2007-12-01 00:00:00 +00:00
SecKFTranslateTest.java 8048820: Implement tests for SecretKeyFactory 2015-05-18 02:11:39 +00:00
security.properties 8155973: Tighten jar checks 2016-07-21 10:33:56 -07:00

To recreate P1.jar/P2.jar, although I doubt this will ever be necessary, do
the following.

mkdir classes
javac -d classes \
    P1SecretKeyFactory.java Provider1.java \
    P2SecretKeyFactory.java Provider2.java

cd classes
jar -cvf ../P1.jar com/p1
jar -cvf ../P2.jar com/p2
cd ..
rm -rf classes

jarsigner -keystore YourJCESigningKeyKeyStore.ks P1.jar yourKeySigningAlias
jarsigner -keystore YourJCESigningKeyKeyStore.ks P2.jar yourKeySigningAlias