mongo 2.11.6 → 2.12.0.rc0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +2 -2
  3. data.tar.gz.sig +0 -0
  4. data/CONTRIBUTING.md +1 -1
  5. data/lib/mongo.rb +3 -0
  6. data/lib/mongo/address.rb +13 -2
  7. data/lib/mongo/auth.rb +1 -0
  8. data/lib/mongo/auth/credential_cache.rb +51 -0
  9. data/lib/mongo/auth/scram/conversation.rb +20 -16
  10. data/lib/mongo/auth/user.rb +0 -8
  11. data/lib/mongo/auth/user/view.rb +4 -4
  12. data/lib/mongo/background_thread.rb +1 -1
  13. data/lib/mongo/bulk_write.rb +5 -5
  14. data/lib/mongo/client.rb +126 -11
  15. data/lib/mongo/client_encryption.rb +103 -0
  16. data/lib/mongo/cluster.rb +2 -2
  17. data/lib/mongo/cluster/reapers/cursor_reaper.rb +18 -6
  18. data/lib/mongo/cluster/sdam_flow.rb +54 -58
  19. data/lib/mongo/cluster/srv_monitor.rb +1 -1
  20. data/lib/mongo/collection.rb +3 -3
  21. data/lib/mongo/collection/view.rb +1 -1
  22. data/lib/mongo/collection/view/aggregation.rb +1 -1
  23. data/lib/mongo/collection/view/change_stream.rb +12 -3
  24. data/lib/mongo/collection/view/iterable.rb +14 -5
  25. data/lib/mongo/collection/view/map_reduce.rb +2 -2
  26. data/lib/mongo/collection/view/readable.rb +7 -9
  27. data/lib/mongo/collection/view/writable.rb +7 -7
  28. data/lib/mongo/crypt.rb +33 -0
  29. data/lib/mongo/crypt/auto_decryption_context.rb +42 -0
  30. data/lib/mongo/crypt/auto_encrypter.rb +169 -0
  31. data/lib/mongo/crypt/auto_encryption_context.rb +44 -0
  32. data/lib/mongo/crypt/binary.rb +155 -0
  33. data/lib/mongo/crypt/binding.rb +1162 -0
  34. data/lib/mongo/crypt/context.rb +135 -0
  35. data/lib/mongo/crypt/data_key_context.rb +162 -0
  36. data/lib/mongo/crypt/encryption_io.rb +283 -0
  37. data/lib/mongo/crypt/explicit_decryption_context.rb +40 -0
  38. data/lib/mongo/crypt/explicit_encrypter.rb +117 -0
  39. data/lib/mongo/crypt/explicit_encryption_context.rb +89 -0
  40. data/lib/mongo/crypt/handle.rb +293 -0
  41. data/lib/mongo/crypt/hooks.rb +90 -0
  42. data/lib/mongo/crypt/kms_context.rb +67 -0
  43. data/lib/mongo/crypt/status.rb +131 -0
  44. data/lib/mongo/cursor.rb +64 -32
  45. data/lib/mongo/database.rb +13 -6
  46. data/lib/mongo/database/view.rb +13 -4
  47. data/lib/mongo/dbref.rb +9 -2
  48. data/lib/mongo/error.rb +5 -1
  49. data/lib/mongo/error/crypt_error.rb +31 -0
  50. data/lib/mongo/error/{failed_stringprep_validation.rb → failed_string_prep_validation.rb} +0 -0
  51. data/lib/mongo/error/invalid_cursor_operation.rb +27 -0
  52. data/lib/mongo/error/kms_error.rb +22 -0
  53. data/lib/mongo/error/max_bson_size.rb +14 -3
  54. data/lib/mongo/error/mongocryptd_spawn_error.rb +22 -0
  55. data/lib/mongo/error/no_server_available.rb +8 -3
  56. data/lib/mongo/error/operation_failure.rb +1 -0
  57. data/lib/mongo/grid/file.rb +0 -5
  58. data/lib/mongo/grid/file/chunk.rb +0 -2
  59. data/lib/mongo/grid/file/info.rb +2 -1
  60. data/lib/mongo/grid/fs_bucket.rb +13 -15
  61. data/lib/mongo/grid/stream/write.rb +3 -9
  62. data/lib/mongo/index/view.rb +3 -3
  63. data/lib/mongo/monitoring/event/command_started.rb +6 -1
  64. data/lib/mongo/operation/collections_info.rb +6 -3
  65. data/lib/mongo/operation/delete/op_msg.rb +1 -1
  66. data/lib/mongo/operation/find/op_msg.rb +4 -1
  67. data/lib/mongo/operation/get_more/op_msg.rb +4 -1
  68. data/lib/mongo/operation/insert/command.rb +2 -2
  69. data/lib/mongo/operation/insert/legacy.rb +2 -2
  70. data/lib/mongo/operation/insert/op_msg.rb +3 -3
  71. data/lib/mongo/operation/result.rb +36 -27
  72. data/lib/mongo/operation/shared/executable.rb +10 -8
  73. data/lib/mongo/operation/shared/executable_no_validate.rb +2 -2
  74. data/lib/mongo/operation/shared/op_msg_or_command.rb +2 -2
  75. data/lib/mongo/operation/shared/op_msg_or_find_command.rb +2 -2
  76. data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +2 -2
  77. data/lib/mongo/operation/shared/write.rb +17 -10
  78. data/lib/mongo/operation/update/op_msg.rb +1 -1
  79. data/lib/mongo/protocol/compressed.rb +6 -5
  80. data/lib/mongo/protocol/insert.rb +3 -1
  81. data/lib/mongo/protocol/message.rb +72 -8
  82. data/lib/mongo/protocol/msg.rb +191 -37
  83. data/lib/mongo/protocol/query.rb +7 -9
  84. data/lib/mongo/protocol/serializers.rb +6 -2
  85. data/lib/mongo/server.rb +10 -4
  86. data/lib/mongo/server/connection.rb +20 -9
  87. data/lib/mongo/server/connection_base.rb +81 -12
  88. data/lib/mongo/server/connection_common.rb +61 -0
  89. data/lib/mongo/server/connection_pool.rb +37 -1
  90. data/lib/mongo/server/description.rb +9 -11
  91. data/lib/mongo/server/monitor.rb +2 -0
  92. data/lib/mongo/server/monitor/connection.rb +3 -18
  93. data/lib/mongo/server/pending_connection.rb +2 -1
  94. data/lib/mongo/session.rb +2 -2
  95. data/lib/mongo/session/session_pool.rb +8 -3
  96. data/lib/mongo/socket.rb +29 -16
  97. data/lib/mongo/socket/ssl.rb +23 -8
  98. data/lib/mongo/socket/tcp.rb +12 -3
  99. data/lib/mongo/timeout.rb +49 -0
  100. data/lib/mongo/uri.rb +30 -1
  101. data/lib/mongo/version.rb +1 -1
  102. data/mongo.gemspec +1 -1
  103. data/spec/README.md +134 -7
  104. data/spec/integration/auth_spec.rb +53 -0
  105. data/spec/integration/{client_options_spec.rb → client_authentication_options_spec.rb} +10 -10
  106. data/spec/integration/client_construction_spec.rb +76 -1
  107. data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +351 -0
  108. data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +301 -0
  109. data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +71 -0
  110. data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +76 -0
  111. data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +216 -0
  112. data/spec/integration/client_side_encryption/auto_encryption_spec.rb +600 -0
  113. data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +183 -0
  114. data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +74 -0
  115. data/spec/integration/client_side_encryption/client_close_spec.rb +59 -0
  116. data/spec/integration/client_side_encryption/corpus_spec.rb +228 -0
  117. data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +132 -0
  118. data/spec/integration/client_side_encryption/data_key_spec.rb +163 -0
  119. data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +114 -0
  120. data/spec/integration/client_side_encryption/external_key_vault_spec.rb +137 -0
  121. data/spec/integration/client_side_encryption/views_spec.rb +42 -0
  122. data/spec/integration/client_update_spec.rb +120 -0
  123. data/spec/integration/command_monitoring_spec.rb +3 -1
  124. data/spec/integration/command_spec.rb +44 -10
  125. data/spec/integration/connection_spec.rb +57 -0
  126. data/spec/integration/reconnect_spec.rb +7 -6
  127. data/spec/integration/size_limit_spec.rb +94 -0
  128. data/spec/integration/srv_monitoring_spec.rb +14 -6
  129. data/spec/lite_spec_helper.rb +31 -22
  130. data/spec/mongo/auth/cr_spec.rb +8 -0
  131. data/spec/mongo/auth/ldap_spec.rb +5 -1
  132. data/spec/mongo/auth/scram/conversation_spec.rb +5 -6
  133. data/spec/mongo/auth/scram/negotiation_spec.rb +74 -75
  134. data/spec/mongo/auth/scram_spec.rb +45 -35
  135. data/spec/mongo/auth/x509_spec.rb +5 -1
  136. data/spec/mongo/client_construction_spec.rb +206 -3
  137. data/spec/mongo/client_encryption_spec.rb +408 -0
  138. data/spec/mongo/cluster/cursor_reaper_spec.rb +12 -8
  139. data/spec/mongo/cluster/socket_reaper_spec.rb +14 -3
  140. data/spec/mongo/collection/view/aggregation_spec.rb +0 -2
  141. data/spec/mongo/collection/view/change_stream_spec.rb +7 -7
  142. data/spec/mongo/collection/view/map_reduce_spec.rb +3 -3
  143. data/spec/mongo/collection/view_spec.rb +1 -1
  144. data/spec/mongo/collection_spec.rb +4 -33
  145. data/spec/mongo/crypt/auto_decryption_context_spec.rb +90 -0
  146. data/spec/mongo/crypt/auto_encrypter_spec.rb +182 -0
  147. data/spec/mongo/crypt/auto_encryption_context_spec.rb +107 -0
  148. data/spec/mongo/crypt/binary_spec.rb +115 -0
  149. data/spec/mongo/crypt/binding/binary_spec.rb +56 -0
  150. data/spec/mongo/crypt/binding/context_spec.rb +257 -0
  151. data/spec/mongo/crypt/binding/helpers_spec.rb +46 -0
  152. data/spec/mongo/crypt/binding/mongocrypt_spec.rb +144 -0
  153. data/spec/mongo/crypt/binding/status_spec.rb +99 -0
  154. data/spec/mongo/crypt/binding/version_spec.rb +22 -0
  155. data/spec/mongo/crypt/binding_unloaded_spec.rb +20 -0
  156. data/spec/mongo/crypt/data_key_context_spec.rb +213 -0
  157. data/spec/mongo/crypt/encryption_io_spec.rb +136 -0
  158. data/spec/mongo/crypt/explicit_decryption_context_spec.rb +72 -0
  159. data/spec/mongo/crypt/explicit_encryption_context_spec.rb +170 -0
  160. data/spec/mongo/crypt/handle_spec.rb +198 -0
  161. data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +108 -0
  162. data/spec/mongo/crypt/status_spec.rb +152 -0
  163. data/spec/mongo/cursor_spec.rb +24 -4
  164. data/spec/mongo/database_spec.rb +20 -0
  165. data/spec/mongo/error/crypt_error_spec.rb +26 -0
  166. data/spec/mongo/error/max_bson_size_spec.rb +35 -0
  167. data/spec/mongo/error/no_server_available_spec.rb +11 -1
  168. data/spec/mongo/error/operation_failure_spec.rb +6 -6
  169. data/spec/mongo/operation/aggregate_spec.rb +1 -1
  170. data/spec/mongo/operation/collections_info_spec.rb +1 -1
  171. data/spec/mongo/operation/command_spec.rb +3 -3
  172. data/spec/mongo/operation/create_index_spec.rb +3 -3
  173. data/spec/mongo/operation/create_user_spec.rb +3 -3
  174. data/spec/mongo/operation/delete/bulk_spec.rb +6 -6
  175. data/spec/mongo/operation/delete/op_msg_spec.rb +1 -6
  176. data/spec/mongo/operation/delete_spec.rb +7 -7
  177. data/spec/mongo/operation/drop_index_spec.rb +2 -2
  178. data/spec/mongo/operation/find/legacy_spec.rb +1 -1
  179. data/spec/mongo/operation/get_more_spec.rb +1 -1
  180. data/spec/mongo/operation/indexes_spec.rb +1 -1
  181. data/spec/mongo/operation/insert/bulk_spec.rb +7 -7
  182. data/spec/mongo/operation/insert/op_msg_spec.rb +3 -6
  183. data/spec/mongo/operation/insert_spec.rb +12 -12
  184. data/spec/mongo/operation/map_reduce_spec.rb +2 -2
  185. data/spec/mongo/operation/remove_user_spec.rb +3 -3
  186. data/spec/mongo/operation/update/bulk_spec.rb +6 -6
  187. data/spec/mongo/operation/update/op_msg_spec.rb +3 -6
  188. data/spec/mongo/operation/update_spec.rb +7 -7
  189. data/spec/mongo/operation/update_user_spec.rb +1 -1
  190. data/spec/mongo/protocol/compressed_spec.rb +2 -3
  191. data/spec/mongo/protocol/delete_spec.rb +9 -8
  192. data/spec/mongo/protocol/get_more_spec.rb +9 -8
  193. data/spec/mongo/protocol/insert_spec.rb +9 -8
  194. data/spec/mongo/protocol/kill_cursors_spec.rb +6 -5
  195. data/spec/mongo/protocol/msg_spec.rb +57 -53
  196. data/spec/mongo/protocol/query_spec.rb +12 -12
  197. data/spec/mongo/protocol/registry_spec.rb +1 -1
  198. data/spec/mongo/protocol/reply_spec.rb +1 -1
  199. data/spec/mongo/protocol/update_spec.rb +10 -9
  200. data/spec/mongo/server/connection_pool_spec.rb +1 -1
  201. data/spec/mongo/server/connection_spec.rb +28 -7
  202. data/spec/mongo/socket_spec.rb +1 -1
  203. data/spec/mongo/timeout_spec.rb +85 -0
  204. data/spec/mongo/uri/srv_protocol_spec.rb +2 -2
  205. data/spec/mongo/uri_spec.rb +52 -5
  206. data/spec/mongo/write_concern_spec.rb +13 -1
  207. data/spec/{support → runners}/auth.rb +14 -1
  208. data/spec/{support → runners}/change_streams.rb +1 -1
  209. data/spec/{support → runners}/change_streams/operation.rb +0 -0
  210. data/spec/{support → runners}/cmap.rb +1 -1
  211. data/spec/{support → runners}/cmap/verifier.rb +0 -0
  212. data/spec/{support → runners}/command_monitoring.rb +0 -0
  213. data/spec/runners/connection_string.rb +358 -4
  214. data/spec/{support → runners}/crud.rb +9 -9
  215. data/spec/{support → runners}/crud/context.rb +0 -0
  216. data/spec/{support → runners}/crud/operation.rb +7 -3
  217. data/spec/{support → runners}/crud/outcome.rb +0 -0
  218. data/spec/{support → runners}/crud/requirement.rb +1 -1
  219. data/spec/{support → runners}/crud/spec.rb +12 -1
  220. data/spec/{support → runners}/crud/test.rb +0 -0
  221. data/spec/{support → runners}/crud/test_base.rb +0 -0
  222. data/spec/{support → runners}/crud/verifier.rb +10 -12
  223. data/spec/{support → runners}/gridfs.rb +0 -0
  224. data/spec/{support → runners}/sdam_monitoring.rb +0 -0
  225. data/spec/{support → runners}/server_discovery_and_monitoring.rb +0 -0
  226. data/spec/{support → runners}/server_selection.rb +0 -0
  227. data/spec/{support → runners}/server_selection_rtt.rb +0 -0
  228. data/spec/{support → runners}/transactions.rb +4 -4
  229. data/spec/{support → runners}/transactions/context.rb +0 -0
  230. data/spec/{support → runners}/transactions/operation.rb +0 -0
  231. data/spec/{support → runners}/transactions/spec.rb +0 -0
  232. data/spec/{support → runners}/transactions/test.rb +37 -5
  233. data/spec/spec_helper.rb +0 -5
  234. data/spec/spec_tests/auth_spec.rb +3 -3
  235. data/spec/spec_tests/client_side_encryption_spec.rb +13 -0
  236. data/spec/spec_tests/connection_string_spec.rb +1 -1
  237. data/spec/spec_tests/data/auth/connection-string.yml +13 -0
  238. data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
  239. data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
  240. data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
  241. data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
  242. data/spec/spec_tests/data/client_side_encryption/bulk.yml +85 -0
  243. data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
  244. data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
  245. data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
  246. data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
  247. data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
  248. data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
  249. data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
  250. data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
  251. data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
  252. data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
  253. data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
  254. data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
  255. data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
  256. data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
  257. data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
  258. data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
  259. data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
  260. data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
  261. data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
  262. data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +61 -0
  263. data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
  264. data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
  265. data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
  266. data/spec/spec_tests/data/client_side_encryption/updateOne.yml +168 -0
  267. data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +1 -4
  268. data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +21 -0
  269. data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +2 -4
  270. data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +1 -1
  271. data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +73 -0
  272. data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +1 -2
  273. data/spec/spec_tests/data/sdam/rs/repeated.yml +101 -0
  274. data/spec/spec_tests/data/sdam/rs/{primary_address_change.yml → ruby_primary_address_change.yml} +2 -0
  275. data/spec/spec_tests/data/sdam/rs/{secondary_wrong_set_name_with_primary_second.yml → ruby_secondary_wrong_set_name_with_primary_second.yml} +0 -0
  276. data/spec/spec_tests/data/sdam/sharded/ruby_discovered_single_mongos.yml +27 -0
  277. data/spec/spec_tests/data/sdam/sharded/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
  278. data/spec/spec_tests/data/sdam/sharded/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
  279. data/spec/spec_tests/data/sdam/single/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
  280. data/spec/spec_tests/data/sdam/single/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
  281. data/spec/spec_tests/data/sdam_monitoring/{replica_set_with_primary_change.yml → replica_set_primary_address_change.yml} +27 -5
  282. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +26 -74
  283. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +20 -16
  284. data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -0
  285. data/spec/spec_tests/data/transactions/pin-mongos.yml +2 -3
  286. data/spec/spec_tests/data/uri_options/auth-options.yml +10 -0
  287. data/spec/spec_tests/data/uri_options/tls-options.yml +75 -4
  288. data/spec/spec_tests/read_write_concern_connection_string_spec.rb +1 -1
  289. data/spec/spec_tests/uri_options_spec.rb +6 -8
  290. data/spec/stress/connection_pool_timing_spec.rb +6 -3
  291. data/spec/support/certificates/README.md +4 -0
  292. data/spec/support/certificates/server-second-level-bundle.pem +77 -77
  293. data/spec/support/certificates/server-second-level.crt +52 -52
  294. data/spec/support/certificates/server-second-level.key +25 -25
  295. data/spec/support/certificates/server-second-level.pem +77 -77
  296. data/spec/support/client_registry.rb +19 -3
  297. data/spec/support/cluster_config.rb +9 -1
  298. data/spec/support/common_shortcuts.rb +12 -0
  299. data/spec/support/constraints.rb +16 -0
  300. data/spec/support/crypt.rb +140 -0
  301. data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
  302. data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
  303. data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
  304. data/spec/support/crypt/corpus/corpus.json +3657 -0
  305. data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
  306. data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
  307. data/spec/support/crypt/data_keys/key_document_local.json +31 -0
  308. data/spec/support/crypt/external/external-key.json +31 -0
  309. data/spec/support/crypt/external/external-schema.json +19 -0
  310. data/spec/support/crypt/limits/limits-doc.json +102 -0
  311. data/spec/support/crypt/limits/limits-key.json +31 -0
  312. data/spec/support/crypt/limits/limits-schema.json +1405 -0
  313. data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
  314. data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
  315. data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
  316. data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
  317. data/spec/support/lite_constraints.rb +17 -1
  318. data/spec/support/matchers.rb +19 -0
  319. data/spec/support/shared/protocol.rb +2 -0
  320. data/spec/support/spec_config.rb +43 -13
  321. data/spec/support/utils.rb +132 -10
  322. metadata +277 -81
  323. metadata.gz.sig +0 -0
  324. data/spec/integration/grid_fs_bucket_spec.rb +0 -48
  325. data/spec/integration/zlib_compression_spec.rb +0 -25
  326. data/spec/spec_tests/data/sdam/sharded/single_mongos.yml +0 -33
  327. data/spec/support/connection_string.rb +0 -354
@@ -0,0 +1,34 @@
1
+ {
2
+ "status": {
3
+ "$numberInt": "1"
4
+ },
5
+ "_id": {
6
+ "$binary": {
7
+ "base64": "AWSAAAAAAAAAAAAAAAAAAA==",
8
+ "subType": "04"
9
+ }
10
+ },
11
+ "masterKey": {
12
+ "provider": "aws",
13
+ "region": "us-east-1",
14
+ "key": "arn:aws:kms:us-east-1:579766882180:key/89fcc2c4-08b0-4bd9-9f25-e30687b580d0",
15
+ "endpoint": "kms.us-east-1.amazonaws.com:443"
16
+ },
17
+ "updateDate": {
18
+ "$date": {
19
+ "$numberLong": "1557827033449"
20
+ }
21
+ },
22
+ "keyAltNames": ["ssn_encryption_key"],
23
+ "keyMaterial": {
24
+ "$binary": {
25
+ "base64": "AQICAHhQNmWG2CzOm1dq3kWLM+iDUZhEqnhJwH9wZVpuZ94A8gEqnsxXlR51T5EbEVezUqqKAAAAwjCBvwYJKoZIhvcNAQcGoIGxMIGuAgEAMIGoBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHa4jo6yp0Z18KgbUgIBEIB74sKxWtV8/YHje5lv5THTl0HIbhSwM6EqRlmBiFFatmEWaeMk4tO4xBX65eq670I5TWPSLMzpp8ncGHMmvHqRajNBnmFtbYxN3E3/WjxmdbOOe+OXpnGJPcGsftc7cB2shRfA4lICPnE26+oVNXT6p0Lo20nY5XC7jyCO",
26
+ "subType": "00"
27
+ }
28
+ },
29
+ "creationDate": {
30
+ "$date": {
31
+ "$numberLong": "1557827033449"
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "status": {
3
+ "$numberInt": "1"
4
+ },
5
+ "_id": {
6
+ "$binary": {
7
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
8
+ "subType": "04"
9
+ }
10
+ },
11
+ "masterKey": {
12
+ "provider": "local"
13
+ },
14
+ "updateDate": {
15
+ "$date": {
16
+ "$numberLong": "1557827033449"
17
+ }
18
+ },
19
+ "keyMaterial": {
20
+ "$binary": {
21
+ "base64": "Ce9HSz/HKKGkIt4uyy+jDuKGA+rLC2cycykMo6vc8jXxqa1UVDYHWq1r+vZKbnnSRBfB981akzRKZCFpC05CTyFqDhXv6OnMjpG97OZEREGIsHEYiJkBW0jJJvfLLgeLsEpBzsro9FztGGXASxyxFRZFhXvHxyiLOKrdWfs7X1O/iK3pEoHMx6uSNSfUOgbebLfIqW7TO++iQS5g1xovXA==",
22
+ "subType": "00"
23
+ }
24
+ },
25
+ "creationDate": {
26
+ "$date": {
27
+ "$numberLong": "1557827033449"
28
+ }
29
+ },
30
+ "keyAltNames": [ "ssn_encryption_key" ]
31
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "status": {
3
+ "$numberInt": "1"
4
+ },
5
+ "_id": {
6
+ "$binary": {
7
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
8
+ "subType": "04"
9
+ }
10
+ },
11
+ "masterKey": {
12
+ "provider": "local"
13
+ },
14
+ "updateDate": {
15
+ "$date": {
16
+ "$numberLong": "1557827033449"
17
+ }
18
+ },
19
+ "keyMaterial": {
20
+ "$binary": {
21
+ "base64": "Ce9HSz/HKKGkIt4uyy+jDuKGA+rLC2cycykMo6vc8jXxqa1UVDYHWq1r+vZKbnnSRBfB981akzRKZCFpC05CTyFqDhXv6OnMjpG97OZEREGIsHEYiJkBW0jJJvfLLgeLsEpBzsro9FztGGXASxyxFRZFhXvHxyiLOKrdWfs7X1O/iK3pEoHMx6uSNSfUOgbebLfIqW7TO++iQS5g1xovXA==",
22
+ "subType": "00"
23
+ }
24
+ },
25
+ "creationDate": {
26
+ "$date": {
27
+ "$numberLong": "1557827033449"
28
+ }
29
+ },
30
+ "keyAltNames": [ "local" ]
31
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "properties": {
3
+ "encrypted": {
4
+ "encrypt": {
5
+ "keyId": [
6
+ {
7
+ "$binary": {
8
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
9
+ "subType": "04"
10
+ }
11
+ }
12
+ ],
13
+ "bsonType": "string",
14
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
15
+ }
16
+ }
17
+ },
18
+ "bsonType": "object"
19
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "00": "a",
3
+ "01": "a",
4
+ "02": "a",
5
+ "03": "a",
6
+ "04": "a",
7
+ "05": "a",
8
+ "06": "a",
9
+ "07": "a",
10
+ "08": "a",
11
+ "09": "a",
12
+ "10": "a",
13
+ "11": "a",
14
+ "12": "a",
15
+ "13": "a",
16
+ "14": "a",
17
+ "15": "a",
18
+ "16": "a",
19
+ "17": "a",
20
+ "18": "a",
21
+ "19": "a",
22
+ "20": "a",
23
+ "21": "a",
24
+ "22": "a",
25
+ "23": "a",
26
+ "24": "a",
27
+ "25": "a",
28
+ "26": "a",
29
+ "27": "a",
30
+ "28": "a",
31
+ "29": "a",
32
+ "30": "a",
33
+ "31": "a",
34
+ "32": "a",
35
+ "33": "a",
36
+ "34": "a",
37
+ "35": "a",
38
+ "36": "a",
39
+ "37": "a",
40
+ "38": "a",
41
+ "39": "a",
42
+ "40": "a",
43
+ "41": "a",
44
+ "42": "a",
45
+ "43": "a",
46
+ "44": "a",
47
+ "45": "a",
48
+ "46": "a",
49
+ "47": "a",
50
+ "48": "a",
51
+ "49": "a",
52
+ "50": "a",
53
+ "51": "a",
54
+ "52": "a",
55
+ "53": "a",
56
+ "54": "a",
57
+ "55": "a",
58
+ "56": "a",
59
+ "57": "a",
60
+ "58": "a",
61
+ "59": "a",
62
+ "60": "a",
63
+ "61": "a",
64
+ "62": "a",
65
+ "63": "a",
66
+ "64": "a",
67
+ "65": "a",
68
+ "66": "a",
69
+ "67": "a",
70
+ "68": "a",
71
+ "69": "a",
72
+ "70": "a",
73
+ "71": "a",
74
+ "72": "a",
75
+ "73": "a",
76
+ "74": "a",
77
+ "75": "a",
78
+ "76": "a",
79
+ "77": "a",
80
+ "78": "a",
81
+ "79": "a",
82
+ "80": "a",
83
+ "81": "a",
84
+ "82": "a",
85
+ "83": "a",
86
+ "84": "a",
87
+ "85": "a",
88
+ "86": "a",
89
+ "87": "a",
90
+ "88": "a",
91
+ "89": "a",
92
+ "90": "a",
93
+ "91": "a",
94
+ "92": "a",
95
+ "93": "a",
96
+ "94": "a",
97
+ "95": "a",
98
+ "96": "a",
99
+ "97": "a",
100
+ "98": "a",
101
+ "99": "a"
102
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "status": {
3
+ "$numberInt": "1"
4
+ },
5
+ "_id": {
6
+ "$binary": {
7
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
8
+ "subType": "04"
9
+ }
10
+ },
11
+ "masterKey": {
12
+ "provider": "local"
13
+ },
14
+ "updateDate": {
15
+ "$date": {
16
+ "$numberLong": "1557827033449"
17
+ }
18
+ },
19
+ "keyMaterial": {
20
+ "$binary": {
21
+ "base64": "Ce9HSz/HKKGkIt4uyy+jDuKGA+rLC2cycykMo6vc8jXxqa1UVDYHWq1r+vZKbnnSRBfB981akzRKZCFpC05CTyFqDhXv6OnMjpG97OZEREGIsHEYiJkBW0jJJvfLLgeLsEpBzsro9FztGGXASxyxFRZFhXvHxyiLOKrdWfs7X1O/iK3pEoHMx6uSNSfUOgbebLfIqW7TO++iQS5g1xovXA==",
22
+ "subType": "00"
23
+ }
24
+ },
25
+ "creationDate": {
26
+ "$date": {
27
+ "$numberLong": "1557827033449"
28
+ }
29
+ },
30
+ "keyAltNames": [ "local" ]
31
+ }
@@ -0,0 +1,1405 @@
1
+ {
2
+ "properties": {
3
+ "10": {
4
+ "encrypt": {
5
+ "keyId": [
6
+ {
7
+ "$binary": {
8
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
9
+ "subType": "04"
10
+ }
11
+ }
12
+ ],
13
+ "bsonType": "string",
14
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
15
+ }
16
+ },
17
+ "11": {
18
+ "encrypt": {
19
+ "keyId": [
20
+ {
21
+ "$binary": {
22
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
23
+ "subType": "04"
24
+ }
25
+ }
26
+ ],
27
+ "bsonType": "string",
28
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
29
+ }
30
+ },
31
+ "12": {
32
+ "encrypt": {
33
+ "keyId": [
34
+ {
35
+ "$binary": {
36
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
37
+ "subType": "04"
38
+ }
39
+ }
40
+ ],
41
+ "bsonType": "string",
42
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
43
+ }
44
+ },
45
+ "13": {
46
+ "encrypt": {
47
+ "keyId": [
48
+ {
49
+ "$binary": {
50
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
51
+ "subType": "04"
52
+ }
53
+ }
54
+ ],
55
+ "bsonType": "string",
56
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
57
+ }
58
+ },
59
+ "14": {
60
+ "encrypt": {
61
+ "keyId": [
62
+ {
63
+ "$binary": {
64
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
65
+ "subType": "04"
66
+ }
67
+ }
68
+ ],
69
+ "bsonType": "string",
70
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
71
+ }
72
+ },
73
+ "15": {
74
+ "encrypt": {
75
+ "keyId": [
76
+ {
77
+ "$binary": {
78
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
79
+ "subType": "04"
80
+ }
81
+ }
82
+ ],
83
+ "bsonType": "string",
84
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
85
+ }
86
+ },
87
+ "16": {
88
+ "encrypt": {
89
+ "keyId": [
90
+ {
91
+ "$binary": {
92
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
93
+ "subType": "04"
94
+ }
95
+ }
96
+ ],
97
+ "bsonType": "string",
98
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
99
+ }
100
+ },
101
+ "17": {
102
+ "encrypt": {
103
+ "keyId": [
104
+ {
105
+ "$binary": {
106
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
107
+ "subType": "04"
108
+ }
109
+ }
110
+ ],
111
+ "bsonType": "string",
112
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
113
+ }
114
+ },
115
+ "18": {
116
+ "encrypt": {
117
+ "keyId": [
118
+ {
119
+ "$binary": {
120
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
121
+ "subType": "04"
122
+ }
123
+ }
124
+ ],
125
+ "bsonType": "string",
126
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
127
+ }
128
+ },
129
+ "19": {
130
+ "encrypt": {
131
+ "keyId": [
132
+ {
133
+ "$binary": {
134
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
135
+ "subType": "04"
136
+ }
137
+ }
138
+ ],
139
+ "bsonType": "string",
140
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
141
+ }
142
+ },
143
+ "20": {
144
+ "encrypt": {
145
+ "keyId": [
146
+ {
147
+ "$binary": {
148
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
149
+ "subType": "04"
150
+ }
151
+ }
152
+ ],
153
+ "bsonType": "string",
154
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
155
+ }
156
+ },
157
+ "21": {
158
+ "encrypt": {
159
+ "keyId": [
160
+ {
161
+ "$binary": {
162
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
163
+ "subType": "04"
164
+ }
165
+ }
166
+ ],
167
+ "bsonType": "string",
168
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
169
+ }
170
+ },
171
+ "22": {
172
+ "encrypt": {
173
+ "keyId": [
174
+ {
175
+ "$binary": {
176
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
177
+ "subType": "04"
178
+ }
179
+ }
180
+ ],
181
+ "bsonType": "string",
182
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
183
+ }
184
+ },
185
+ "23": {
186
+ "encrypt": {
187
+ "keyId": [
188
+ {
189
+ "$binary": {
190
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
191
+ "subType": "04"
192
+ }
193
+ }
194
+ ],
195
+ "bsonType": "string",
196
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
197
+ }
198
+ },
199
+ "24": {
200
+ "encrypt": {
201
+ "keyId": [
202
+ {
203
+ "$binary": {
204
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
205
+ "subType": "04"
206
+ }
207
+ }
208
+ ],
209
+ "bsonType": "string",
210
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
211
+ }
212
+ },
213
+ "25": {
214
+ "encrypt": {
215
+ "keyId": [
216
+ {
217
+ "$binary": {
218
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
219
+ "subType": "04"
220
+ }
221
+ }
222
+ ],
223
+ "bsonType": "string",
224
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
225
+ }
226
+ },
227
+ "26": {
228
+ "encrypt": {
229
+ "keyId": [
230
+ {
231
+ "$binary": {
232
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
233
+ "subType": "04"
234
+ }
235
+ }
236
+ ],
237
+ "bsonType": "string",
238
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
239
+ }
240
+ },
241
+ "27": {
242
+ "encrypt": {
243
+ "keyId": [
244
+ {
245
+ "$binary": {
246
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
247
+ "subType": "04"
248
+ }
249
+ }
250
+ ],
251
+ "bsonType": "string",
252
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
253
+ }
254
+ },
255
+ "28": {
256
+ "encrypt": {
257
+ "keyId": [
258
+ {
259
+ "$binary": {
260
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
261
+ "subType": "04"
262
+ }
263
+ }
264
+ ],
265
+ "bsonType": "string",
266
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
267
+ }
268
+ },
269
+ "29": {
270
+ "encrypt": {
271
+ "keyId": [
272
+ {
273
+ "$binary": {
274
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
275
+ "subType": "04"
276
+ }
277
+ }
278
+ ],
279
+ "bsonType": "string",
280
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
281
+ }
282
+ },
283
+ "30": {
284
+ "encrypt": {
285
+ "keyId": [
286
+ {
287
+ "$binary": {
288
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
289
+ "subType": "04"
290
+ }
291
+ }
292
+ ],
293
+ "bsonType": "string",
294
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
295
+ }
296
+ },
297
+ "31": {
298
+ "encrypt": {
299
+ "keyId": [
300
+ {
301
+ "$binary": {
302
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
303
+ "subType": "04"
304
+ }
305
+ }
306
+ ],
307
+ "bsonType": "string",
308
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
309
+ }
310
+ },
311
+ "32": {
312
+ "encrypt": {
313
+ "keyId": [
314
+ {
315
+ "$binary": {
316
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
317
+ "subType": "04"
318
+ }
319
+ }
320
+ ],
321
+ "bsonType": "string",
322
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
323
+ }
324
+ },
325
+ "33": {
326
+ "encrypt": {
327
+ "keyId": [
328
+ {
329
+ "$binary": {
330
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
331
+ "subType": "04"
332
+ }
333
+ }
334
+ ],
335
+ "bsonType": "string",
336
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
337
+ }
338
+ },
339
+ "34": {
340
+ "encrypt": {
341
+ "keyId": [
342
+ {
343
+ "$binary": {
344
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
345
+ "subType": "04"
346
+ }
347
+ }
348
+ ],
349
+ "bsonType": "string",
350
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
351
+ }
352
+ },
353
+ "35": {
354
+ "encrypt": {
355
+ "keyId": [
356
+ {
357
+ "$binary": {
358
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
359
+ "subType": "04"
360
+ }
361
+ }
362
+ ],
363
+ "bsonType": "string",
364
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
365
+ }
366
+ },
367
+ "36": {
368
+ "encrypt": {
369
+ "keyId": [
370
+ {
371
+ "$binary": {
372
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
373
+ "subType": "04"
374
+ }
375
+ }
376
+ ],
377
+ "bsonType": "string",
378
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
379
+ }
380
+ },
381
+ "37": {
382
+ "encrypt": {
383
+ "keyId": [
384
+ {
385
+ "$binary": {
386
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
387
+ "subType": "04"
388
+ }
389
+ }
390
+ ],
391
+ "bsonType": "string",
392
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
393
+ }
394
+ },
395
+ "38": {
396
+ "encrypt": {
397
+ "keyId": [
398
+ {
399
+ "$binary": {
400
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
401
+ "subType": "04"
402
+ }
403
+ }
404
+ ],
405
+ "bsonType": "string",
406
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
407
+ }
408
+ },
409
+ "39": {
410
+ "encrypt": {
411
+ "keyId": [
412
+ {
413
+ "$binary": {
414
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
415
+ "subType": "04"
416
+ }
417
+ }
418
+ ],
419
+ "bsonType": "string",
420
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
421
+ }
422
+ },
423
+ "40": {
424
+ "encrypt": {
425
+ "keyId": [
426
+ {
427
+ "$binary": {
428
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
429
+ "subType": "04"
430
+ }
431
+ }
432
+ ],
433
+ "bsonType": "string",
434
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
435
+ }
436
+ },
437
+ "41": {
438
+ "encrypt": {
439
+ "keyId": [
440
+ {
441
+ "$binary": {
442
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
443
+ "subType": "04"
444
+ }
445
+ }
446
+ ],
447
+ "bsonType": "string",
448
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
449
+ }
450
+ },
451
+ "42": {
452
+ "encrypt": {
453
+ "keyId": [
454
+ {
455
+ "$binary": {
456
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
457
+ "subType": "04"
458
+ }
459
+ }
460
+ ],
461
+ "bsonType": "string",
462
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
463
+ }
464
+ },
465
+ "43": {
466
+ "encrypt": {
467
+ "keyId": [
468
+ {
469
+ "$binary": {
470
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
471
+ "subType": "04"
472
+ }
473
+ }
474
+ ],
475
+ "bsonType": "string",
476
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
477
+ }
478
+ },
479
+ "44": {
480
+ "encrypt": {
481
+ "keyId": [
482
+ {
483
+ "$binary": {
484
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
485
+ "subType": "04"
486
+ }
487
+ }
488
+ ],
489
+ "bsonType": "string",
490
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
491
+ }
492
+ },
493
+ "45": {
494
+ "encrypt": {
495
+ "keyId": [
496
+ {
497
+ "$binary": {
498
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
499
+ "subType": "04"
500
+ }
501
+ }
502
+ ],
503
+ "bsonType": "string",
504
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
505
+ }
506
+ },
507
+ "46": {
508
+ "encrypt": {
509
+ "keyId": [
510
+ {
511
+ "$binary": {
512
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
513
+ "subType": "04"
514
+ }
515
+ }
516
+ ],
517
+ "bsonType": "string",
518
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
519
+ }
520
+ },
521
+ "47": {
522
+ "encrypt": {
523
+ "keyId": [
524
+ {
525
+ "$binary": {
526
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
527
+ "subType": "04"
528
+ }
529
+ }
530
+ ],
531
+ "bsonType": "string",
532
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
533
+ }
534
+ },
535
+ "48": {
536
+ "encrypt": {
537
+ "keyId": [
538
+ {
539
+ "$binary": {
540
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
541
+ "subType": "04"
542
+ }
543
+ }
544
+ ],
545
+ "bsonType": "string",
546
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
547
+ }
548
+ },
549
+ "49": {
550
+ "encrypt": {
551
+ "keyId": [
552
+ {
553
+ "$binary": {
554
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
555
+ "subType": "04"
556
+ }
557
+ }
558
+ ],
559
+ "bsonType": "string",
560
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
561
+ }
562
+ },
563
+ "50": {
564
+ "encrypt": {
565
+ "keyId": [
566
+ {
567
+ "$binary": {
568
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
569
+ "subType": "04"
570
+ }
571
+ }
572
+ ],
573
+ "bsonType": "string",
574
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
575
+ }
576
+ },
577
+ "51": {
578
+ "encrypt": {
579
+ "keyId": [
580
+ {
581
+ "$binary": {
582
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
583
+ "subType": "04"
584
+ }
585
+ }
586
+ ],
587
+ "bsonType": "string",
588
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
589
+ }
590
+ },
591
+ "52": {
592
+ "encrypt": {
593
+ "keyId": [
594
+ {
595
+ "$binary": {
596
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
597
+ "subType": "04"
598
+ }
599
+ }
600
+ ],
601
+ "bsonType": "string",
602
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
603
+ }
604
+ },
605
+ "53": {
606
+ "encrypt": {
607
+ "keyId": [
608
+ {
609
+ "$binary": {
610
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
611
+ "subType": "04"
612
+ }
613
+ }
614
+ ],
615
+ "bsonType": "string",
616
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
617
+ }
618
+ },
619
+ "54": {
620
+ "encrypt": {
621
+ "keyId": [
622
+ {
623
+ "$binary": {
624
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
625
+ "subType": "04"
626
+ }
627
+ }
628
+ ],
629
+ "bsonType": "string",
630
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
631
+ }
632
+ },
633
+ "55": {
634
+ "encrypt": {
635
+ "keyId": [
636
+ {
637
+ "$binary": {
638
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
639
+ "subType": "04"
640
+ }
641
+ }
642
+ ],
643
+ "bsonType": "string",
644
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
645
+ }
646
+ },
647
+ "56": {
648
+ "encrypt": {
649
+ "keyId": [
650
+ {
651
+ "$binary": {
652
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
653
+ "subType": "04"
654
+ }
655
+ }
656
+ ],
657
+ "bsonType": "string",
658
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
659
+ }
660
+ },
661
+ "57": {
662
+ "encrypt": {
663
+ "keyId": [
664
+ {
665
+ "$binary": {
666
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
667
+ "subType": "04"
668
+ }
669
+ }
670
+ ],
671
+ "bsonType": "string",
672
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
673
+ }
674
+ },
675
+ "58": {
676
+ "encrypt": {
677
+ "keyId": [
678
+ {
679
+ "$binary": {
680
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
681
+ "subType": "04"
682
+ }
683
+ }
684
+ ],
685
+ "bsonType": "string",
686
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
687
+ }
688
+ },
689
+ "59": {
690
+ "encrypt": {
691
+ "keyId": [
692
+ {
693
+ "$binary": {
694
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
695
+ "subType": "04"
696
+ }
697
+ }
698
+ ],
699
+ "bsonType": "string",
700
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
701
+ }
702
+ },
703
+ "60": {
704
+ "encrypt": {
705
+ "keyId": [
706
+ {
707
+ "$binary": {
708
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
709
+ "subType": "04"
710
+ }
711
+ }
712
+ ],
713
+ "bsonType": "string",
714
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
715
+ }
716
+ },
717
+ "61": {
718
+ "encrypt": {
719
+ "keyId": [
720
+ {
721
+ "$binary": {
722
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
723
+ "subType": "04"
724
+ }
725
+ }
726
+ ],
727
+ "bsonType": "string",
728
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
729
+ }
730
+ },
731
+ "62": {
732
+ "encrypt": {
733
+ "keyId": [
734
+ {
735
+ "$binary": {
736
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
737
+ "subType": "04"
738
+ }
739
+ }
740
+ ],
741
+ "bsonType": "string",
742
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
743
+ }
744
+ },
745
+ "63": {
746
+ "encrypt": {
747
+ "keyId": [
748
+ {
749
+ "$binary": {
750
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
751
+ "subType": "04"
752
+ }
753
+ }
754
+ ],
755
+ "bsonType": "string",
756
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
757
+ }
758
+ },
759
+ "64": {
760
+ "encrypt": {
761
+ "keyId": [
762
+ {
763
+ "$binary": {
764
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
765
+ "subType": "04"
766
+ }
767
+ }
768
+ ],
769
+ "bsonType": "string",
770
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
771
+ }
772
+ },
773
+ "65": {
774
+ "encrypt": {
775
+ "keyId": [
776
+ {
777
+ "$binary": {
778
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
779
+ "subType": "04"
780
+ }
781
+ }
782
+ ],
783
+ "bsonType": "string",
784
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
785
+ }
786
+ },
787
+ "66": {
788
+ "encrypt": {
789
+ "keyId": [
790
+ {
791
+ "$binary": {
792
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
793
+ "subType": "04"
794
+ }
795
+ }
796
+ ],
797
+ "bsonType": "string",
798
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
799
+ }
800
+ },
801
+ "67": {
802
+ "encrypt": {
803
+ "keyId": [
804
+ {
805
+ "$binary": {
806
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
807
+ "subType": "04"
808
+ }
809
+ }
810
+ ],
811
+ "bsonType": "string",
812
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
813
+ }
814
+ },
815
+ "68": {
816
+ "encrypt": {
817
+ "keyId": [
818
+ {
819
+ "$binary": {
820
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
821
+ "subType": "04"
822
+ }
823
+ }
824
+ ],
825
+ "bsonType": "string",
826
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
827
+ }
828
+ },
829
+ "69": {
830
+ "encrypt": {
831
+ "keyId": [
832
+ {
833
+ "$binary": {
834
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
835
+ "subType": "04"
836
+ }
837
+ }
838
+ ],
839
+ "bsonType": "string",
840
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
841
+ }
842
+ },
843
+ "70": {
844
+ "encrypt": {
845
+ "keyId": [
846
+ {
847
+ "$binary": {
848
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
849
+ "subType": "04"
850
+ }
851
+ }
852
+ ],
853
+ "bsonType": "string",
854
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
855
+ }
856
+ },
857
+ "71": {
858
+ "encrypt": {
859
+ "keyId": [
860
+ {
861
+ "$binary": {
862
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
863
+ "subType": "04"
864
+ }
865
+ }
866
+ ],
867
+ "bsonType": "string",
868
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
869
+ }
870
+ },
871
+ "72": {
872
+ "encrypt": {
873
+ "keyId": [
874
+ {
875
+ "$binary": {
876
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
877
+ "subType": "04"
878
+ }
879
+ }
880
+ ],
881
+ "bsonType": "string",
882
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
883
+ }
884
+ },
885
+ "73": {
886
+ "encrypt": {
887
+ "keyId": [
888
+ {
889
+ "$binary": {
890
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
891
+ "subType": "04"
892
+ }
893
+ }
894
+ ],
895
+ "bsonType": "string",
896
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
897
+ }
898
+ },
899
+ "74": {
900
+ "encrypt": {
901
+ "keyId": [
902
+ {
903
+ "$binary": {
904
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
905
+ "subType": "04"
906
+ }
907
+ }
908
+ ],
909
+ "bsonType": "string",
910
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
911
+ }
912
+ },
913
+ "75": {
914
+ "encrypt": {
915
+ "keyId": [
916
+ {
917
+ "$binary": {
918
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
919
+ "subType": "04"
920
+ }
921
+ }
922
+ ],
923
+ "bsonType": "string",
924
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
925
+ }
926
+ },
927
+ "76": {
928
+ "encrypt": {
929
+ "keyId": [
930
+ {
931
+ "$binary": {
932
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
933
+ "subType": "04"
934
+ }
935
+ }
936
+ ],
937
+ "bsonType": "string",
938
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
939
+ }
940
+ },
941
+ "77": {
942
+ "encrypt": {
943
+ "keyId": [
944
+ {
945
+ "$binary": {
946
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
947
+ "subType": "04"
948
+ }
949
+ }
950
+ ],
951
+ "bsonType": "string",
952
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
953
+ }
954
+ },
955
+ "78": {
956
+ "encrypt": {
957
+ "keyId": [
958
+ {
959
+ "$binary": {
960
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
961
+ "subType": "04"
962
+ }
963
+ }
964
+ ],
965
+ "bsonType": "string",
966
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
967
+ }
968
+ },
969
+ "79": {
970
+ "encrypt": {
971
+ "keyId": [
972
+ {
973
+ "$binary": {
974
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
975
+ "subType": "04"
976
+ }
977
+ }
978
+ ],
979
+ "bsonType": "string",
980
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
981
+ }
982
+ },
983
+ "80": {
984
+ "encrypt": {
985
+ "keyId": [
986
+ {
987
+ "$binary": {
988
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
989
+ "subType": "04"
990
+ }
991
+ }
992
+ ],
993
+ "bsonType": "string",
994
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
995
+ }
996
+ },
997
+ "81": {
998
+ "encrypt": {
999
+ "keyId": [
1000
+ {
1001
+ "$binary": {
1002
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1003
+ "subType": "04"
1004
+ }
1005
+ }
1006
+ ],
1007
+ "bsonType": "string",
1008
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1009
+ }
1010
+ },
1011
+ "82": {
1012
+ "encrypt": {
1013
+ "keyId": [
1014
+ {
1015
+ "$binary": {
1016
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1017
+ "subType": "04"
1018
+ }
1019
+ }
1020
+ ],
1021
+ "bsonType": "string",
1022
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1023
+ }
1024
+ },
1025
+ "83": {
1026
+ "encrypt": {
1027
+ "keyId": [
1028
+ {
1029
+ "$binary": {
1030
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1031
+ "subType": "04"
1032
+ }
1033
+ }
1034
+ ],
1035
+ "bsonType": "string",
1036
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1037
+ }
1038
+ },
1039
+ "84": {
1040
+ "encrypt": {
1041
+ "keyId": [
1042
+ {
1043
+ "$binary": {
1044
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1045
+ "subType": "04"
1046
+ }
1047
+ }
1048
+ ],
1049
+ "bsonType": "string",
1050
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1051
+ }
1052
+ },
1053
+ "85": {
1054
+ "encrypt": {
1055
+ "keyId": [
1056
+ {
1057
+ "$binary": {
1058
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1059
+ "subType": "04"
1060
+ }
1061
+ }
1062
+ ],
1063
+ "bsonType": "string",
1064
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1065
+ }
1066
+ },
1067
+ "86": {
1068
+ "encrypt": {
1069
+ "keyId": [
1070
+ {
1071
+ "$binary": {
1072
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1073
+ "subType": "04"
1074
+ }
1075
+ }
1076
+ ],
1077
+ "bsonType": "string",
1078
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1079
+ }
1080
+ },
1081
+ "87": {
1082
+ "encrypt": {
1083
+ "keyId": [
1084
+ {
1085
+ "$binary": {
1086
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1087
+ "subType": "04"
1088
+ }
1089
+ }
1090
+ ],
1091
+ "bsonType": "string",
1092
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1093
+ }
1094
+ },
1095
+ "88": {
1096
+ "encrypt": {
1097
+ "keyId": [
1098
+ {
1099
+ "$binary": {
1100
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1101
+ "subType": "04"
1102
+ }
1103
+ }
1104
+ ],
1105
+ "bsonType": "string",
1106
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1107
+ }
1108
+ },
1109
+ "89": {
1110
+ "encrypt": {
1111
+ "keyId": [
1112
+ {
1113
+ "$binary": {
1114
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1115
+ "subType": "04"
1116
+ }
1117
+ }
1118
+ ],
1119
+ "bsonType": "string",
1120
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1121
+ }
1122
+ },
1123
+ "90": {
1124
+ "encrypt": {
1125
+ "keyId": [
1126
+ {
1127
+ "$binary": {
1128
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1129
+ "subType": "04"
1130
+ }
1131
+ }
1132
+ ],
1133
+ "bsonType": "string",
1134
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1135
+ }
1136
+ },
1137
+ "91": {
1138
+ "encrypt": {
1139
+ "keyId": [
1140
+ {
1141
+ "$binary": {
1142
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1143
+ "subType": "04"
1144
+ }
1145
+ }
1146
+ ],
1147
+ "bsonType": "string",
1148
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1149
+ }
1150
+ },
1151
+ "92": {
1152
+ "encrypt": {
1153
+ "keyId": [
1154
+ {
1155
+ "$binary": {
1156
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1157
+ "subType": "04"
1158
+ }
1159
+ }
1160
+ ],
1161
+ "bsonType": "string",
1162
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1163
+ }
1164
+ },
1165
+ "93": {
1166
+ "encrypt": {
1167
+ "keyId": [
1168
+ {
1169
+ "$binary": {
1170
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1171
+ "subType": "04"
1172
+ }
1173
+ }
1174
+ ],
1175
+ "bsonType": "string",
1176
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1177
+ }
1178
+ },
1179
+ "94": {
1180
+ "encrypt": {
1181
+ "keyId": [
1182
+ {
1183
+ "$binary": {
1184
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1185
+ "subType": "04"
1186
+ }
1187
+ }
1188
+ ],
1189
+ "bsonType": "string",
1190
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1191
+ }
1192
+ },
1193
+ "95": {
1194
+ "encrypt": {
1195
+ "keyId": [
1196
+ {
1197
+ "$binary": {
1198
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1199
+ "subType": "04"
1200
+ }
1201
+ }
1202
+ ],
1203
+ "bsonType": "string",
1204
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1205
+ }
1206
+ },
1207
+ "96": {
1208
+ "encrypt": {
1209
+ "keyId": [
1210
+ {
1211
+ "$binary": {
1212
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1213
+ "subType": "04"
1214
+ }
1215
+ }
1216
+ ],
1217
+ "bsonType": "string",
1218
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1219
+ }
1220
+ },
1221
+ "97": {
1222
+ "encrypt": {
1223
+ "keyId": [
1224
+ {
1225
+ "$binary": {
1226
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1227
+ "subType": "04"
1228
+ }
1229
+ }
1230
+ ],
1231
+ "bsonType": "string",
1232
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1233
+ }
1234
+ },
1235
+ "98": {
1236
+ "encrypt": {
1237
+ "keyId": [
1238
+ {
1239
+ "$binary": {
1240
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1241
+ "subType": "04"
1242
+ }
1243
+ }
1244
+ ],
1245
+ "bsonType": "string",
1246
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1247
+ }
1248
+ },
1249
+ "99": {
1250
+ "encrypt": {
1251
+ "keyId": [
1252
+ {
1253
+ "$binary": {
1254
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1255
+ "subType": "04"
1256
+ }
1257
+ }
1258
+ ],
1259
+ "bsonType": "string",
1260
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1261
+ }
1262
+ },
1263
+ "00": {
1264
+ "encrypt": {
1265
+ "keyId": [
1266
+ {
1267
+ "$binary": {
1268
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1269
+ "subType": "04"
1270
+ }
1271
+ }
1272
+ ],
1273
+ "bsonType": "string",
1274
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1275
+ }
1276
+ },
1277
+ "01": {
1278
+ "encrypt": {
1279
+ "keyId": [
1280
+ {
1281
+ "$binary": {
1282
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1283
+ "subType": "04"
1284
+ }
1285
+ }
1286
+ ],
1287
+ "bsonType": "string",
1288
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1289
+ }
1290
+ },
1291
+ "02": {
1292
+ "encrypt": {
1293
+ "keyId": [
1294
+ {
1295
+ "$binary": {
1296
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1297
+ "subType": "04"
1298
+ }
1299
+ }
1300
+ ],
1301
+ "bsonType": "string",
1302
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1303
+ }
1304
+ },
1305
+ "03": {
1306
+ "encrypt": {
1307
+ "keyId": [
1308
+ {
1309
+ "$binary": {
1310
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1311
+ "subType": "04"
1312
+ }
1313
+ }
1314
+ ],
1315
+ "bsonType": "string",
1316
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1317
+ }
1318
+ },
1319
+ "04": {
1320
+ "encrypt": {
1321
+ "keyId": [
1322
+ {
1323
+ "$binary": {
1324
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1325
+ "subType": "04"
1326
+ }
1327
+ }
1328
+ ],
1329
+ "bsonType": "string",
1330
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1331
+ }
1332
+ },
1333
+ "05": {
1334
+ "encrypt": {
1335
+ "keyId": [
1336
+ {
1337
+ "$binary": {
1338
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1339
+ "subType": "04"
1340
+ }
1341
+ }
1342
+ ],
1343
+ "bsonType": "string",
1344
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1345
+ }
1346
+ },
1347
+ "06": {
1348
+ "encrypt": {
1349
+ "keyId": [
1350
+ {
1351
+ "$binary": {
1352
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1353
+ "subType": "04"
1354
+ }
1355
+ }
1356
+ ],
1357
+ "bsonType": "string",
1358
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1359
+ }
1360
+ },
1361
+ "07": {
1362
+ "encrypt": {
1363
+ "keyId": [
1364
+ {
1365
+ "$binary": {
1366
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1367
+ "subType": "04"
1368
+ }
1369
+ }
1370
+ ],
1371
+ "bsonType": "string",
1372
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1373
+ }
1374
+ },
1375
+ "08": {
1376
+ "encrypt": {
1377
+ "keyId": [
1378
+ {
1379
+ "$binary": {
1380
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1381
+ "subType": "04"
1382
+ }
1383
+ }
1384
+ ],
1385
+ "bsonType": "string",
1386
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1387
+ }
1388
+ },
1389
+ "09": {
1390
+ "encrypt": {
1391
+ "keyId": [
1392
+ {
1393
+ "$binary": {
1394
+ "base64": "LOCALAAAAAAAAAAAAAAAAA==",
1395
+ "subType": "04"
1396
+ }
1397
+ }
1398
+ ],
1399
+ "bsonType": "string",
1400
+ "algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic"
1401
+ }
1402
+ }
1403
+ },
1404
+ "bsonType": "object"
1405
+ }