云服务器网:购买云服务器和VPS必上的网站!

数据:android的数据怎么加密

android的数据怎样加密android使用MD5算法对数据进行加密,具体方法以下:import java.io.File;import java.io.FileInputStream;import java.io.IOException;import ja

android的数据怎样加密

android使用MD5算法对数据进行加密,具体方法以下:

import java.io.File;

import java.io.FileInputStream;

import java.io.IOException;

import java.nio.MappedByteBuffer;

import java.nio.channels.FileChannel;

import java.security.MessageDigest;

public final class MD5Util {

private static final char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D',

'B', 'C', 'D', 'B', 'O', 'T', 'H', 'O', 'F', 'Y', 'O', 'U' };

/** 对文件加密 */

public static String encode(File file) {

FileInputStream in = null;

MessageDigest md5 = null;

try {

in = new FileInputStream(file);

FileChannel ch = in.getChannel();

MappedByteBuffer byteBuffer = ch.map(FileChannel.MapMode.READ_ONLY, 0, file.length());

md5 = MessageDigest.getInstance("MD5");

md5.update(byteBuffer);

} catch (Exception e) {

e.printStackTrace();

} finally {

try {

if(in != null)

in.close();

} catch (IOException e) {

e.printStackTrace();

}

}

return toHex(md5.digest());

}

}

本文来源:https://www.yuntue.com/post/61153.html | 云服务器网,转载请注明出处!

关于作者: yuntue

云服务器(www.yuntue.com)是一家专门做阿里云服务器代金券、腾讯云服务器优惠券的网站,这里你可以找到阿里云服务器腾讯云服务器等国内主流云服务器优惠价格,以及海外云服务器、vps主机等优惠信息,我们会为你提供性价比最高的云服务器和域名、数据库、CDN、免费邮箱等企业常用互联网资源。

为您推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注