diff options
author | Davis Haupt <davis.haupt@mongodb.com> | 2022-03-02 21:57:33 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-03-10 17:29:27 +0000 |
commit | f7947a4fb5bae95c778697148500ebe2fd332aaf (patch) | |
tree | ac154c97f2c6df2241fafaa73c244806d10a13f2 /src/mongo/crypto | |
parent | 46268920bb349c9e7089c2d3d7ac98ebe052dddd (diff) | |
download | mongo-f7947a4fb5bae95c778697148500ebe2fd332aaf.tar.gz |
SERVER-63292 Update query analysis and tests for find and count commands
Diffstat (limited to 'src/mongo/crypto')
-rw-r--r-- | src/mongo/crypto/fle_field_schema.idl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mongo/crypto/fle_field_schema.idl b/src/mongo/crypto/fle_field_schema.idl index 45efeac5c70..55751df25ad 100644 --- a/src/mongo/crypto/fle_field_schema.idl +++ b/src/mongo/crypto/fle_field_schema.idl @@ -51,6 +51,13 @@ enums: kFLE2UnindexedEncryptedValue : 6 # see FLE2IndexedEqualityEncryptedValue kFLE2EqualityIndexedValue : 7 + FleVersion: + description: "The version / type of field-level encryption in use." + type: int + values: + kFle1: 1 + kFle2: 2 + FleAlgorithmInt: description: "The algorithm used to encrypt fields for field level encryption represented as an unsigned integer." |