jdk-24/test/jdk/javax/crypto/SecretKeyFactory
2019-03-18 15:26:59 -07: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
FailOverTest.sh 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 8218723: Use SunJCE Mac in SecretKeyFactory PBKDF2 implementation 2019-03-18 15:26:59 -07:00
SecKFTranslateTest.java 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02:00
security.properties 8187443: Forest Consolidation: Move files to unified layout 2017-09-12 19:03:39 +02: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