public final class AutoEncryptionSettings
extends java.lang.Object
Automatic encryption is an enterprise only feature that only applies to operations on a collection. Automatic encryption is not
supported for operations on a database or view and will result in error. To bypass automatic encryption,
set bypassAutoEncryption=true in AutoEncryptionSettings
.
Explicit encryption/decryption and automatic decryption is a community feature, enabled with the new
com.mongodb.client.vault.ClientEncryption
type.
A MongoClient configured with bypassAutoEncryption=true will still automatically decrypt.
If automatic encryption fails on an operation, use a MongoClient configured with bypassAutoEncryption=true and use ClientEncryption#encrypt to manually encrypt values.
Enabling client side encryption reduces the maximum document and message size (using a maxBsonObjectSize of 2MiB and maxMessageSizeBytes of 6MB) and may have a negative performance impact.
Automatic encryption requires the authenticated user to have the listCollections privilege action.
Modifier and Type | Class and Description |
---|---|
static class |
AutoEncryptionSettings.Builder
A builder for
AutoEncryptionSettings so that AutoEncryptionSettings can be immutable, and to support easier
construction through chaining. |
Modifier and Type | Method and Description |
---|---|
static AutoEncryptionSettings.Builder |
builder()
Convenience method to create a Builder.
|
java.util.Map<java.lang.String,java.lang.Object> |
getExtraOptions()
Gets the extra options that control the behavior of auto-encryption components.
|
MongoClientSettings |
getKeyVaultMongoClientSettings()
Gets the key vault settings.
|
java.lang.String |
getKeyVaultNamespace()
Gets the key vault namespace.
|
java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.lang.Object>> |
getKmsProviders()
Gets the map of KMS provider properties.
|
java.util.Map<java.lang.String,BsonDocument> |
getSchemaMap()
Gets the map of namespace to local JSON schema.
|
boolean |
isBypassAutoEncryption()
Gets whether auto-encryption should be bypassed.
|
public static AutoEncryptionSettings.Builder builder()
@Nullable public MongoClientSettings getKeyVaultMongoClientSettings()
The key vault collection is assumed to reside on the same MongoDB cluster as the encrypted collections. But the optional keyVaultMongoClientSettings can be used to route data key queries to a separate MongoDB cluster, or the same cluster but using a different credential.
MongoClient
should be used to access the key
vault collection as is used for the rest of the application.public java.lang.String getKeyVaultNamespace()
The key vault namespace refers to a collection that contains all data keys used for encryption and decryption (aka the key vault collection). Data keys are stored as documents in a special MongoDB collection. Data keys are protected with encryption by a KMS provider (AWS KMS or a local master key).
public java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.lang.Object>> getKmsProviders()
Multiple KMS providers may be specified. Initially, two KMS providers are supported: "aws" and "local". The kmsProviders map values differ by provider:
For "aws", the properties are:
For "local", the properties are:
public java.util.Map<java.lang.String,BsonDocument> getSchemaMap()
Automatic encryption is configured with an "encrypt" field in a collection's JSONSchema. By default, a collection's JSONSchema is periodically polled with the listCollections command. But a JSONSchema may be specified locally with the schemaMap option.
The key into the map is the full namespace of the collection, which is <database name>.<collection name>
. For
example, if the database name is "test"
and the collection name is "users"
, then the namesspace is
"test.users"
.
Supplying a schemaMap provides more security than relying on JSON Schemas obtained from the server. It protects against a malicious server advertising a false JSON Schema, which could trick the client into sending unencrypted data that should be encrypted.
Schemas supplied in the schemaMap only apply to configuring automatic encryption for client side encryption. Other validation rules in the JSON schema will not be enforced by the driver and will result in an error.
public java.util.Map<java.lang.String,java.lang.Object> getExtraOptions()
The extraOptions currently only relate to the mongocryptd process. The following options keys are supported:
"--idleShutdownTimeoutSecs=60"
public boolean isBypassAutoEncryption()
This option is useful for cases where the driver throws an exception because it is unable to prove that the command does not
contain any fields that should be automatically encrypted, but the application is able to determine that it does not. For these
cases, the application can construct a MongoClient
with AutoEncryptionSettings
with bypassAutoEncryption
enabled.
Copyright © 2010 - 2023 Adobe. All Rights Reserved