| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

非死book的数据加密包:Conceal

Conceal 是 非死book 推出的一个用来对数据进行快速加密和认证的开发包,应用可以使用它来加密数据和大文件存储。Conceal 和其他加密软件不同的是它提供了 Smorgasbord 加密算法和选项,这不是一个一般意义上的数据加密包,只是提供一些有用的方法。

非死book的数据加密包:Conceal

示例代码:

// Creates a new Crypto object with default implementations of   // a key chain as well as native library.  Crypto crypto = new Crypto(    new SharedPrefsBackedKeyChain(context),    new SystemNativeCryptoLibrary());     FileOutputStream fileStream = new FileOutputStream(file);     // Creates an output stream which encrypts the data as  // it is written to it and writes it out to the file.  OutputStream outputStream = crypto.getCipherOutputStream(    fileStream,    entity);     // Write plaintext to it.  outputStream.write(plainText);  outputStream.close();

项目主页:http://www.open-open.com/lib/view/home/1424578047010

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1424578047010.html
Conceal 安全相关