@@ -25,10 +25,18 @@ data.
2525Client-side field level encryption in the .NET/C# driver is currently only supported on x64-compatible CPUs.
2626{{% /note %}}
2727
28+ ### Automatic client-side encryption
29+
30+ The following examples show how to configure automatic encryption for read and write operations.
31+
32+ {{% note %}}
33+ Auto encryption is an ** enterprise** or Atlas only feature.
34+ {{% /note %}}
35+
2836## mongocryptd configuration
2937
30- Client-side field level encryption requires the ` mongocryptd ` daemon / process
31- to be running. If ` mongocryptd ` isn't running, the driver will atempt to spawn
38+ Client-side field level automatic encryption requires the ` mongocryptd ` daemon / process
39+ to be running. If ` mongocryptd ` isn't running, the driver will attempt to spawn
3240an instance, utilizing the ` PATH ` environment variable. Alternatively, the path
3341to ` mongocryptd ` can be specified by setting ` mongocryptdSpawnPath ` in
3442` extraOptions ` . A specific daemon / process URI can also be configured in the
@@ -40,8 +48,6 @@ documentation.
4048
4149## Examples
4250
43- ### Automatic client-side encryption
44-
4551The following is a sample app that assumes the ** key** and ** schema** have
4652already been created in MongoDB. The example uses a local key, however using AWS
4753Key Management Service is also an option. The data in the ` encryptedField ` field
@@ -93,10 +99,6 @@ namespace MongoDB.Driver.Examples
9399}
94100```
95101
96- {{% note %}}
97- Auto encryption is an ** enterprise** only feature.
98- {{% /note %}}
99-
100102The following example shows how to configure the ` AutoEncryptionSettings `
101103instance to create a new key and how to set the json schema map. The following
102104example has been adapted from
0 commit comments