Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including crypto-use with all npm packages installed. Try it out:

const { encrypt, decrypt, encrypt_object, decrypt_object, } = require('crypto-use'); const data = { _id: '5cd223c243ed3900220f8ee5', a: 1, b: 2, c: 3, }; const secret_key = 'asd'; const encrypted_data = encrypt({ data, secret_key, }); console.log('encrypted_data', encrypted_data); const decrypted_data = decrypt({ encrypted_data, secret_key, }); console.log('decrypted_data', decrypted_data); const encrypted_object = encrypt_object({ data, secret_key, ignore_keys: ['_id', 'a'], }); console.log('encrypted_object', encrypted_object); const decrypted_object = decrypt_object({ encrypted_object, secret_key, ignore_keys: ['_id'], }); console.log('decrypted_object', decrypted_object);

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

crypto-use v1.1.6

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free