jdk-24/test/jdk/javax/crypto/SecretKeyFactory
2021-05-06 05:50:22 +00:00
..
evilprov 8218723: Use SunJCE Mac in SecretKeyFactory PBKDF2 implementation 2019-03-18 15:26:59 -07:00
evilprov.jar 8218723: Use SunJCE Mac in SecretKeyFactory PBKDF2 implementation 2019-03-18 15:26:59 -07:00
FailOverTest.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
P1.jar 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
P1SecretKeyFactory.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
P2.jar 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
P2SecretKeyFactory.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
PBKDF2TranslateTest.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
Provider1.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
Provider2.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
README.FailOverTest 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
SecKeyFacSunJCEPrf.java 8258796: [test] Apply HexFormat to tests for java.security 2021-01-08 21:32:54 +00:00
SecKFTranslateTest.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
security.properties 8247968: test/jdk/javax/crypto/SecretKeyFactory/security.properties has wrong header 2020-06-25 06:12:29 -07:00
TestFailOver.java 8180568: Refactor javax/crypto shell tests to plain java tests 2021-05-06 05:50:22 +00: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