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

https://github.com/adlered/randomtextencryption

:key:随机加密法-将指定字符串打乱, 并生成一个私钥使其可以被恢复|Disturb string, and generate a private key makes string recoverable.
https://github.com/adlered/randomtextencryption

Last synced: 9 months ago
JSON representation

:key:随机加密法-将指定字符串打乱, 并生成一个私钥使其可以被恢复|Disturb string, and generate a private key makes string recoverable.

Awesome Lists containing this project

README

          

## 随机加密算法
Random Encryption Algorithms

### 简介
这是一个我也不知道有没有人写过的简单算法
假设有四个字符需要加密: abcd
以随机生成数字的方式使其从第0位到最后一位分别随机与其它位置的字符交换。
并记录其移动到了哪个位置(生成一串私钥)。解密程序可以根据其生成的加密后的字符串和私钥对其进行解密。
**如果配合base64, md5等加密方式混合加密, 效果更佳.**

### Introduction
For example, the are four character needs to encrypt: abcd
We let each character random exchange with other character and record it(sum private key).
The Decoder can decode the characters with Private Key and Text(has been encrypted).
**If you mix and encrypt with base64, md5 and other encryption methods, the effect will be better.**

### About
本项目是初学所写,语法较不严谨,欢迎提出Issue!
This project was written when I was a beginner, so grammar is not strict. Issue me!