matteo porta
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# _MongoDB_ encryption All this is valid for _MongoDB_ version >= 4.2 ## Transport layer Full support for _TLS_ for free, only _FIPS_ mode is enterprise only <https://www.mongodb.com/docs/manual/core/security-transport-encryption/> ## Encryption at rest <https://www.mongodb.com/docs/manual/core/security-encryption-at-rest/> ### Server side: enterprise only Only supported with the _WiredTiger_ storage engine: <https://www.mongodb.com/docs/manual/core/security-encryption-at-rest/> has full support for queries, _AES256-GCM_ only for linux, _AES256-CBC_ supported for linux and windows ### Field level client side encryption Field level encryption: <https://www.mongodb.com/docs/manual/core/csfle/> <https://www.mongodb.com/docs/manual/core/csfle/reference/encryption-schemas/#mongodb-autoencryptkeyword-autoencryptkeyword.encrypt.algorithm> _Encrypt-then-MAC_ deterministic or random initialization vector is used, _MongoDB_ only supports _AEAD\_AES\_256\_CBC\_HMAC\_SHA\_512_ #### Explicit (manual) encryption: free <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/manual-encryption/> The client is required to encrypt and decrypt data on its own, this is basically transparent for the server, the server can enforce encryption of certain fields using the validation schema. This could be done trough the _mongosh_ provided methods: - _getClientEncryption()_ - _ClientEncryption.encrypt()_ - _ClientEncryption.decrypt()_ #### Automatic encryption: enterprise only <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/automatic-encryption/> <https://www.mongodb.com/docs/manual/core/queryable-encryption/> Applications must create a database connection object with the automatic encryption configuration settings. Applications do not have to modify code associated with constructing the read/write operation but only some operations are supported and can be done transparently: <https://www.mongodb.com/docs/manual/core/csfle/reference/supported-operations/> ##### How it works <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/automatic-encryption/#how-encrypted-writes-and-reads-work> <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/keys-key-vaults/> <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/manage-keys/> <div style="page-break-after: always; visibility: hidden"> \pagebreak </div> ![Encrypted writes](https://www.mongodb.com/docs/manual/images/CSFLE_Write_Encrypted_Data.png) ![Encrypted reads](https://www.mongodb.com/docs/manual/images/CSFLE_Read_Encrypted_Data.png) <div style="page-break-after: always; visibility: hidden"> \pagebreak </div> In the automatic decryption process the encrypted data is stored in a BinData blob that contains metadata about the Data Encryption Key and Encryption Algorithm. The data encryption key will be automatically stored by _MongoDB_ in a Key Management Service (KMS) encrypted with a Customer Master Key (CMK). Deleting the CMK renders all data encryption keys encrypted with that CMK as permanently unreadable, which in turn renders all values encrypted with those data encryption keys as permanently unreadable. The BinData blob metadata includes the data encryption key _id and encryption algorithm used to encrypt the binary data. The automatic decryption process works as follows: 1. Check the BinData blob metadata for the data encryption key and encryption algorithm used to encrypt the value. 2. Check the key vault configured in the current database connection for the specified data encryption key. If the key vault does not contain the specified key, automatic decryption fails and the driver returns the BinData blob. 3. Check the data encryption key metadata for the Customer Master Key (CMK) used to encrypt the key material. - For the supported KMS platforms: - Amazon Web Services KMS, - Azure Key Vault, - Google Cloud Platform KMS, send the data encryption key to the KMS provider for decryption. If the CMK does not exist or if the connection configuration does not grant access to the CMK, decryption fails and the driver returns the BinData blob. - For the - Locally Managed Key, retrieve the local key and decrypt the data encryption key. If the local key specified in the database configuration was not used to encrypt the data encryption key, decryption fails and the driver returns the BinData blob. 4. Decrypt the BinData value using the decrypted data encryption key and appropriate algorithm. Applications with access to the _MongoDB_ server that do not also have access to the required master key and data encryption keys cannot decrypt the BinData values. Automatic client-side field level encryption is available with _MongoDB_ Enterprise only. Since the _MongoDB_ server cannot decrypt nor introspect the contents of the encrypted field, it cannot validate the encryption options. This means the server can't prevent clients pushing randomized encryption data instead of deterministic meaning that queries expecting deterministically encrypted data for that field will return inconsistent results, as the server cannot match any of randomly encrypted fields. #### Field encryption types <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/encryption-algorithms/> ##### Deterministic <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/encryption-algorithms/#std-label-csfle-deterministic-encryption> Ensures a given input value always encrypts to the same output value each time the algorithm is executed, provides greater support for read operations, nut encrypted data with low cardinality is susceptible to frequency analysis recovery. For sensitive fields that are not used in read operations, applications may use Randomized Encryption for improved protection from frequency analysis recovery. For sensitive fields that are used in read operations, applications must use Deterministic Encryption for improved read support on encrypted fields. ##### Randomized <https://www.mongodb.com/docs/manual/core/csfle/fundamentals/encryption-algorithms/#std-label-csfle-random-encryption> Ensures that a given input value always encrypts to a different output value each time the algorithm is executed, provides the strongest guarantees of data confidentiality, but it also prevents support for any read operations which must operate on the encrypted field to evaluate the query. Randomized encryption also supports encrypting entire objects or arrays, while this protects all fields nested under those fields, it also prevents querying against those nested fields. <div style="page-break-after: always; visibility: hidden"> \pagebreak </div> ## Recap <https://www.mongodb.com/docs/manual/core/csfle/features/#comparison-of-features> ![Security Features Chart](https://www.mongodb.com/docs/manual/images/CSFLE_Security_Feature_Chart.png)

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully