Package org.apache.cassandra.security
Interface KeyProvider
-
- All Known Implementing Classes:
JKSKeyProvider
public interface KeyProvider
Customizable key retrieval mechanism. Implementations should expect that retrieved keys will be cached. Further, each key will be requested non-concurrently (that is, no stampeding herds for the same key), although unique keys may be requested concurrently (unless you markgetSecretKey
synchronized). Implementations must provide a constructor that acceptsTransparentDataEncryptionOptions
as the sole parameter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.security.Key
getSecretKey(java.lang.String alias)
-