Package net.rwx.padlock
Interface KeyProvider
-
public interface KeyProviderCreate a class that inherit fromKeyProviderto define the key used to encrypt session token.The created class must be annoted with
Provider.For instance :
@Provider public class KeyProviderImpl implements KeyProvider { @Override public byte[] getKey() { return "My Key...".getBytes(); } }- Author:
- Arnaud Fonce
- See Also:
Provider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getKey()
-