@around25/ncrypt

Encrypt files

Usage no npm install needed!

<script type="module">
  import around25Ncrypt from 'https://cdn.skypack.dev/@around25/ncrypt';
</script>

README

ncrypt

Small util to encrypt / decrypt files.

Usage

To encrypt

npx @around25/ncrypt -m "encrypt" -f ".test"

# Writes encrypted file to ".test.encrypted"
# Generates a password and outputs it to console

Add -p "password" if you want to encrypt using a specified password.

To decrypt

npx @around25/ncrypt -m "decrypt" -f ".test" -p "password"

# Writes decrypted file to ".test"