boolean |
PicketBoxSecurityVault.exists(String vaultBlock,
String attributeName) |
|
boolean |
SecurityVault.exists(String vaultBlock,
String attributeName) |
Check whether an attribute value exists in the vault
|
static SecurityVault |
SecurityVaultFactory.get() |
|
static SecurityVault |
SecurityVaultFactory.get(ClassLoader classLoader,
String fqn) |
|
static SecurityVault |
SecurityVaultFactory.get(String fqn) |
|
byte[] |
PicketBoxSecurityVault.handshake(Map<String,Object> handshakeOptions) |
|
byte[] |
SecurityVault.handshake(Map<String,Object> handshakeOptions) |
Retrieve the shared key from the vault
|
void |
PicketBoxSecurityVault.init(Map<String,Object> options) |
|
void |
SecurityVault.init(Map<String,Object> options) |
Initialize the vault
|
Set<String> |
PicketBoxSecurityVault.keyList() |
|
Set<String> |
SecurityVault.keyList() |
Get the currently vaulted VaultBlock_attribute Names
|
boolean |
PicketBoxSecurityVault.remove(String vaultBlock,
String attributeName,
byte[] sharedKey) |
|
boolean |
SecurityVault.remove(String vaultBlock,
String attributeName,
byte[] sharedKey) |
Remove an existing attribute value
|
char[] |
PicketBoxSecurityVault.retrieve(String vaultBlock,
String attributeName,
byte[] sharedKey) |
|
char[] |
SecurityVault.retrieve(String vaultBlock,
String attributeName,
byte[] sharedKey) |
Retrieve the attribute value
|
void |
PicketBoxSecurityVault.store(String vaultBlock,
String attributeName,
char[] attributeValue,
byte[] sharedKey) |
|
void |
SecurityVault.store(String vaultBlock,
String attributeName,
char[] attributeValue,
byte[] sharedKey) |
Store an attribute value
|