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.
- Host: GitHub
- URL: https://github.com/adlered/randomtextencryption
- Owner: adlered
- License: mit
- Created: 2018-12-21T11:24:25.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-26T14:52:49.000Z (over 6 years ago)
- Last Synced: 2024-10-30T08:23:52.318Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!