jdk-24/test/jdk/javax/crypto/SecretKeyFactory
Fernando Guallini f340ab2d36 8342181: Update tests to use stronger Key and Salt size
Reviewed-by: rhalade, ascarpino
2024-10-30 22:14:54 +00:00
..
evilprov 8341927: Replace hardcoded security providers with new test.provider.name system property 2024-10-30 18:51:02 +00: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 8342181: Update tests to use stronger Key and Salt size 2024-10-30 22:14:54 +00:00
SecKFTranslateTest.java 8341927: Replace hardcoded security providers with new test.provider.name system property 2024-10-30 18:51:02 +00: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