mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
- Properties have to be encrypted and decrypted in code using MetadataEncryptor ('metadataEncryptor') - No conversion, encryption or decryption is done by Alfresco - Unencrypted values cannot be persisted and get thrown out - ALF-8646: RINF 38: Text data encryption - ALF-8956: RINF 38: Encryption key password specified by installer - ALF-9055: RINF 38: Support encryption against existing data git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28480 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
30 lines
863 B
Java
30 lines
863 B
Java
package org.alfresco.repo.security.encryption;
|
|
|
|
import java.security.Key;
|
|
|
|
/**
|
|
* A key provider returns the secret keys for different use cases.
|
|
*
|
|
* @since 4.0
|
|
*/
|
|
public interface KeyProvider
|
|
{
|
|
// TODO: Allow the aliases to be configured i.e. include an alias mapper
|
|
/**
|
|
* Constant representing the keystore alias for keys to encrypt/decrype node metadata
|
|
*/
|
|
public static final String ALIAS_METADATA = "metadata";
|
|
/**
|
|
* Constant representing the keystore alias for keys to encrypt/decrype SOLR transfer data
|
|
*/
|
|
public static final String ALIAS_SOLR = "solr";
|
|
|
|
/**
|
|
* Get an encryption key if available.
|
|
*
|
|
* @param keyAlias the key alias
|
|
* @return the encryption key or <tt>null</tt> if there is no associated key
|
|
*/
|
|
public Key getKey(String keyAlias);
|
|
}
|