Package org.keycloak.vault
Class DefaultVaultTranscriber
- java.lang.Object
- 
- org.keycloak.vault.DefaultVaultTranscriber
 
- 
- All Implemented Interfaces:
- VaultTranscriber
 
 public class DefaultVaultTranscriber extends Object implements VaultTranscriber DefaultVaultTranscriberimplementation that uses the configuredVaultProviderto obtain raw secrets and convert them into other types. By default, theVaultProviderprovides raw secrets through aByteBuffer. This class offers methods to convert the raw secrets into other types (such asVaultCharSecretorWeakReference).- Author:
- Stefan Guilhen
- See Also:
- VaultRawSecret,- VaultCharSecret
 
- 
- 
Constructor SummaryConstructors Constructor Description DefaultVaultTranscriber(VaultProvider provider)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description VaultCharSecretgetCharSecret(String value)Obtains the secret represented as aVaultCharSecretfrom the vault that matches the entry in the specified value string.VaultRawSecretgetRawSecret(String value)Obtains the raw secret from the vault that matches the entry in the specified value string.VaultStringSecretgetStringSecret(String value)Obtains the secret represented as aStringfrom the vault that matches the entry in the specified value.
 
- 
- 
- 
Constructor Detail- 
DefaultVaultTranscriberpublic DefaultVaultTranscriber(VaultProvider provider) 
 
- 
 - 
Method Detail- 
getRawSecretpublic VaultRawSecret getRawSecret(String value) Description copied from interface:VaultTranscriberObtains the raw secret from the vault that matches the entry in the specified value string. The value must follow the format${vault.<KEY>}where<KEY>identifies the entry in the vault. If the value doesn't follow the vault expression format, it is assumed to be the secret itself and is encoded into aVaultRawSecret. The returnedVaultRawSecretextendsAutoCloseableand it is strongly recommended that it is used in try-with-resources blocks to ensure the raw secret is overridden (destroyed) when the calling code is finished using it.- Specified by:
- getRawSecretin interface- VaultTranscriber
- Parameters:
- value- a- Stringthat might be a vault expression containing a vault entry key.
- Returns:
- a VaultRawSecretrepresenting the secret that was read from the vault. If the specified value is not a vault expression then the returned secret is the value itself encoded as aVaultRawSecret.
 
 - 
getCharSecretpublic VaultCharSecret getCharSecret(String value) Description copied from interface:VaultTranscriberObtains the secret represented as aVaultCharSecretfrom the vault that matches the entry in the specified value string. The value must follow the format${vault.<KEY>}where<KEY>identifies the entry in the vault. If the value doesn't follow the vault expression format, it is assumed to be the secret itself and is encoded into aVaultCharSecret. The returnedVaultCharSecretextendsAutoCloseableand it is strongly recommended that it is used in try-with-resources blocks to ensure the raw secret is overridden (destroyed) when the calling code is finished using it.- Specified by:
- getCharSecretin interface- VaultTranscriber
- Parameters:
- value- a- Stringthat might be a vault expression containing a vault entry key.
- Returns:
- a VaultRawSecretrepresenting the secret that was read from the vault. If the specified value is not a vault expression then the returned secret is the value itself encoded as aVaultRawSecret.
 
 - 
getStringSecretpublic VaultStringSecret getStringSecret(String value) Description copied from interface:VaultTranscriberObtains the secret represented as aStringfrom the vault that matches the entry in the specified value. The value must follow the format${vault.<KEY>}where<KEY>identifies the entry in the vault. If the value doesn't follow the vault expression format, it is assumed to be the secret itself. Due to the immutable nature of strings and the way the JVM handles them internally, implementations that keep a reference to the secret string might consider doing so using aWeakReferencethat can be cleared in theAutoCloseable.close()method. Being immutable, such strings cannot be overridden (destroyed) by the implementation, but using aWeakReferenceguarantees that at least no hard references to the secret are held by the implementation class itself (which would prevent proper GC disposal of the secrets). WARNING: It is strongly recommended that callers of this method use the returned secret in try-with-resources blocks and they should strive not to keep hard references to the enclosed secret string for any longer than necessary so that the secret becomes available for GC as soon as possible. These measures help shorten the window of time when the secret strings are readable from memory.- Specified by:
- getStringSecretin interface- VaultTranscriber
- Parameters:
- value- a- Stringthat might be a vault expression containing a vault entry key.
- Returns:
- a VaultStringSecretrepresenting the secret that was read from the vault. If the specified value is not a vault expression then the returned secret is the value itself encoded as aVaultStringSecret.
 
 
- 
 
-