jdk-24/jdk/test/javax/crypto/SecretKeyFactory
2007-12-01 00:00:00 +00:00
..
FailOverTest.java Initial load 2007-12-01 00:00:00 +00:00
FailOverTest.sh Initial load 2007-12-01 00:00:00 +00:00
P1.jar Initial load 2007-12-01 00:00:00 +00:00
P1SecretKeyFactory.java Initial load 2007-12-01 00:00:00 +00:00
P2.jar Initial load 2007-12-01 00:00:00 +00:00
P2SecretKeyFactory.java Initial load 2007-12-01 00:00:00 +00:00
Provider1.java Initial load 2007-12-01 00:00:00 +00:00
Provider2.java Initial load 2007-12-01 00:00:00 +00:00
README.FailOverTest Initial load 2007-12-01 00:00:00 +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