Questions tagged [crypto-pouch]

crypto-pouch is an npm plugin to encrypt a PouchDB/CouchDB database. It encrypts with the AES-GCM using native crypto which prefers the native version in node or the web crypto version in the browser, falling back to the version from crypto browserify if no native version exists.

crypto-pouch is an npm plugin to encrypt a PouchDB/CouchDB database.It encrypts with the AES-GCM using native crypto which prefers the native version in node or the web crypto version in the browser, falling back to the version from crypto browserify if no native version exists.

3 questions
2
votes
0 answers

Can CouchDB database be encrypted at rest?

Looking out for ways to encrypt the CouchDB database file at rest. I understand that CouchDB has auth rules setup to prevent unauthorised user from accessing the data. This works well for web applications which are deployed on secure servers, but I…
1
vote
0 answers

PouchDB sync with CouchDB conflicts with every update when using crypto-pouch plugin

I am using pouchDB in an angular App to store local data, and also using crypto-pouch 3.1.3 plugin to encrypt local data in IndexedDB. Here is my code : PouchDB = require('pouchdb').default; Crypto = require ('crypto-pouch'); Upsert = require…
Wayne Wei
  • 2,907
  • 2
  • 13
  • 19
-1
votes
2 answers

crypto-pouch showing import error in angular

I have imported crypto pouch in angular like below import CryptoPouch from 'crypto-pouch'; But its showing error like below, Could not find a declaration file for module 'crypto-pouch'.…