@tsmx/mongoose-encrypted-string
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "@tsmx/mongoose-encrypted-string", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "EncryptedString type for Mongoose schemas.", | ||
@@ -35,3 +35,2 @@ "main": "mongoose-encrypted-string.js", | ||
"devDependencies": { | ||
"coveralls": "^3.1.0", | ||
"jest": "^26.5.3", | ||
@@ -38,0 +37,0 @@ "mongodb-memory-server": "^6.9.2" |
@@ -6,3 +6,3 @@ # [**@tsmx/mongoose-encrypted-string**](https://github.com/tsmx/mongoose-encrypted-string) | ||
![node-current (scoped)](https://img.shields.io/node/v/@tsmx/mongoose-encrypted-string) | ||
[![Build Status](https://travis-ci.com/tsmx/mongoose-encrypted-string.svg?branch=master)](https://travis-ci.org/tsmx/mongoose-encrypted-string) | ||
[![Build Status](https://img.shields.io/github/workflow/status/tsmx/mongoose-encrypted-string/git-ci-build)](https://img.shields.io/github/workflow/status/tsmx/mongoose-encrypted-string/git-ci-build) | ||
[![Coverage Status](https://coveralls.io/repos/github/tsmx/mongoose-encrypted-string/badge.svg?branch=master)](https://coveralls.io/github/tsmx/mongoose-encrypted-string?branch=master) | ||
@@ -56,3 +56,3 @@ | ||
Registers the new type `EncryptedString` in the `mongoose` instance's schema types. Encryption/decryption is done using the given `key`. After calling this funtion you can start using the new type via `mongoose.Schema.Types.EncryptedString` in your schemas. | ||
Registers the new type `EncryptedString` in the `mongoose` instance's schema types. Encryption/decryption is done with AES-256-CBC using the given `key`. After calling this funtion you can start using the new type via `mongoose.Schema.Types.EncryptedString` in your schemas. | ||
@@ -59,0 +59,0 @@ #### mongoose |
11464
2
7