An open API service indexing awesome lists of open source software.

https://github.com/samislam/string-encryptor

Encrypt decrypt string simple interactive cli tool
https://github.com/samislam/string-encryptor

Last synced: 3 months ago
JSON representation

Encrypt decrypt string simple interactive cli tool

Awesome Lists containing this project

README

        

# string-encryptor

a small CLI application that encrypts/decrypts a string without leaving a trace, all in-memory on the system.

# Installation

Executables are available for Linux systems, if you're on windows or Mac OSx, you have to run the project yourself using [bun](https://bun.sh/), install bun then run the application using `bun start`.

If you're on Linux:
### 1 Download
| OS | Download |
| --------- | -------------------------------------------------------------------------------------------------- |
| Linux x64 | [Download](https://github.com/samislam/string-encryptor/releases/download/v1.0.0/string-encryptor) |
### 2 Give it execution permissions
```sh
$ sudo mv ./string-encryptor /usr/bin
$ sudo chmod +x ./string-encryptor
```

--------

To install dependencies:

```bash
bun install
```

To run:

```bash
bun run index.ts
```

This project was created using `bun init` in bun v1.1.45. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.