You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,34 @@ You can install `mongodb-client-encryption` with the following:
23
23
npm install mongodb-client-encryption
24
24
```
25
25
26
+
### Release Integrity
27
+
28
+
Releases are created automatically and signed using the [Node team's GPG key](https://pgp.mongodb.com/node-driver.asc). This applies to the git tag as well as all release packages provided as part of a GitHub release. To verify the provided packages, download the key and import it using gpg:
29
+
30
+
```
31
+
gpg --import node-driver.asc
32
+
```
33
+
34
+
The GitHub release contains a detached signature file for the NPM package (named
35
+
`mongodb-client-encryption-X.Y.Z.tgz.sig`).
36
+
37
+
The following command returns the link npm package.
No verification is done when using npm to install the package. The contents of the Github tarball and npm's tarball are identical.
51
+
52
+
To verify the native `.node` packages, follow the same steps as above using `mongodb-client-encryption-X.Y.Z-platform.tgz` and the corresponding `.sig` file.
0 commit comments