# srndcipher
A simple way to encode plain text, keeps the result sortable and partly searchable.
## Install
```shell
pip install srndcipher
```
## Usage
```
import os
import srndcipher
cipher1 = srndcipher.SrndCipher(password="Your password")
data1 = os.urandom(1024)
data2 = cipher1.encrypt(data1)
data3 = cipher1.decrypt(data2)
assert data1 == data3
cipher2 = srndcipher.SrndCipher(password="Your password", force_text=True)
data1 = "your plain message"
data2 = cipher2.encrypt(data1)
data3 = cipher2.decrypt(data2)
assert data1 == data3
```
## Notice
- SrndCipher instance init takes about 0.6 second time, so try to keep the instance reusable.
## Releases
### v0.5.0
- First relase.
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
资源分类:Python库 所属语言:Python 资源全名:srndcipher-0.5.0.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
资源推荐
资源详情
资源评论
收起资源包目录
srndcipher-0.5.0.tar.gz (13个子文件)
srndcipher-0.5.0
MANIFEST.in 136B
PKG-INFO 1KB
LICENSE 1KB
srndcipher.egg-info
PKG-INFO 1KB
requires.txt 10B
SOURCES.txt 238B
top_level.txt 11B
dependency_links.txt 1B
setup.cfg 38B
requirements.txt 10B
setup.py 1KB
srndcipher.py 2KB
README.md 699B
共 13 条
- 1
资源评论
挣扎的蓝藻
- 粉丝: 14w+
- 资源: 15万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功