Package de.christofreichardt.jca.shamir

Comprises a JCA KeyStore engine and related classes. In order to use the provider within your application
  1. Put the provider jar and its transitive dependencies on the classpath of your application. Typically this is done by Maven for you.
  2. Dynamically register the provider with
    ShamirsProvider myProvider = new ShamirsProvider();
    Security.addProvider(myProvider);
  3. Now you can request a KeyStore instance of type "ShamirsKeystore" with
    KeyStore keyStore = KeyStore.getInstance("ShamirsKeystore", myProvider);
See Also:
Java Cryptography Architecture (JCA) Reference Guide , Shamir's Keystore