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

https://github.com/abdullahkhawer/ak-encoder-decoder

A Python based encoding and decoding tool for texts and secrets with executables provided for Windows and Linux.
https://github.com/abdullahkhawer/ak-encoder-decoder

alphanumeric decoder decoding decryption encoder encoding encryption linux passkey python secrets string-manipulation texts windows

Last synced: 6 months ago
JSON representation

A Python based encoding and decoding tool for texts and secrets with executables provided for Windows and Linux.

Awesome Lists containing this project

README

          

# AK Encoder Decoder v1.0

- Founder: Abdullah Khawer (LinkedIn: https://www.linkedin.com/in/abdullah-khawer/)

## Introduction

A Python based encoding and decoding tool for texts and secrets with executables provided for Windows and Linux.

## Prerequisites

- Python 2.7+ Installed
- Pass code used by AK Encoder Decoder is stored in an environment variables. It should be a string. String can have alphabets numbers and special characters. Recommended length is 13 characters to avoid code cracking via brute force attack.
- To set pass code in Linux via Terminal:
Syntax:
```console
$ export AK_ENCODER_DECODER_PASS_KEY=""
```
Example:
```console
$ export AK_ENCODER_DECODER_PASS_KEY="ABC@123"
```
To set pass code in Windows via CMD:
Syntax:
```console
> set AK_ENCODER_DECODER_PASS_KEY=""
```
Example:
```console
> set AK_ENCODER_DECODER_PASS_KEY=ABC@123
```

### Warning: Share the pass code only with the receiver of the encoded messages so that person can decode them.

## Usage Notes

- To encode a string in Linux via Terminal:
Syntax:
```console
$ ./akencoderdecoder 0
```
Example:
```console
$ ./akencoderdecoder 0 "Hello World!"
```
- To encode a string in Windows via CMD:
Syntax:
```console
> akencoderdecoder.exe 0
```
Example:
```console
> akencoderdecoder.exe 0 "Hello World!"
```

- To decode a string in Linux via Terminal:
Syntax:
```console
$ ./akencoderdecoder 1
```
Example:
```console
$ ./akencoderdecoder 1 "12O7O8O2"
```
- To decode a string in Windows via CMD:
Syntax:
```console
> akencoderdecoder.exe 1
```
Example:
```console
> akencoderdecoder.exe "12O7O8O2"
```