Git Product home page Git Product logo

encrypto's Introduction

Encryption Tool CodeFactor Build Status NuGet

Application - Instructions

1. Encrypto

This Application is dotnet tool and .net core 2.1 Application.

The main purpose of this tool is to encrypt or decrypt a folder(s) or unique file(s) using AES 256 Encryption Algorithm. Data will be encrypted with your preferred password.

Usage:

dotnet-encrypto decrypt --help

Encyption

Encrypt Folder(s) or Files

dotnet-encrypto encrypt -i /home/tcs/Downloads/ -q

password as command line parameter:

dotnet-encrypto encrypt -i /home/tcs/Downloads/ -p "123"

Encrypt File at Base64 output

dotnet-encrypto encrypt -i /home/tcs/Downloads/file.txt --base64 -p "123" 

encrypt file with output parameter

dotnet-encrypto encrypt -i ~/Downloads/logs/elastic-search.txt -p "123" -o ~/Downloads/logs/elastic-search-encrypt.log --base64

dotnet-encrypto generate a mapping file for safety reasons. In case you delete the original file from the directory but you keep the encrypted file, after decryption the tool will restore the original unencrypted file

--local-output

dotnet-encrypto encrypt -i ~/Downloads/logs/original.log -o ~/Downloads/logs/encrypted.log -p "123" --base64 --local-output

generate output file at the folder of the input file

Encrypt Text:

Create a base64 encoded encrypted text:

dotnet-encrypto encrypt -t "tom" -q

pass password as command line parameter

dotnet-encrypto encrypt -t "tom" -p "123"

Decryption

Decrypt Folder(s) or Files

dotnet-encrypto decrypt -i /home/tcs/Downloads/ -q

password as command line parameter

dotnet-encrypto decrypt -i /home/tcs/Downloads/ -p "123"

Decrypt File at Base64 output

dotnet-encrypto decrypt -i /home/tcs/Downloads/ --base64 -p "123"

decrypt file with output parameter

dotnet-encrypto decrypt -i ~/Downloads/logs/elastic-search-encrypt.log -p "123" -o ~/Downloads/logs/elastic-search-txt --base64

Decrypt Text:

dotnet-encrypto decrypt -t ""P/A6VZEaRHCB8WV9S5m58g==" -q

password as command line parameter

dotnet-encrypto decrypt -t "P/A6VZEaRHCB8WV9S5m58g==" -p "123"

Nuget

https://www.nuget.org/packages/dotnet-encrypto

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.