c语言编写的程序,在输入密码时,如何加密?

c语言编写的程序,在输入密码时,如何加密?,第1张

加密和解密算法是程序编制中的重要一环。试想,如果我们平时使用的腾讯QQ、支付宝支付密码、今日头条账号密码那么轻易就被别人盗取的话,很多不可以预料的事情就会发生!

在现实生活中,我们遇到过太多QQ密码被盗取的情况,有的朋友QQ被盗之后,骗子利用朋友间信任骗取钱财的事情屡见不鲜。支付宝也曾出现过支付宝账户被恶意盗取的事件,对用户利益造成了严重损害!这些在技术上都指向了同一相关问题:软件加密算法的强壮程度。今天,小编利用C语言来简单实现一种加密方法。下面是源代码。

需要说明:程序利用了ascii码值的按照一定规律变换实现加密,对于解密过程,则是加密的逆过程。下面是程序的运行结果。

4190阅读

搜索

编程免费课程300节

初学编程100个代码

java自学一般要学多久

5秒破解excel密码

python必背100源代码

40岁零基础学编程

public class mySecurity {

private static KeyGenerator keygen

private static SecretKey secretKey

private static Cipher cipher

private static mySecurity security = null

private mySecurity(){

}

public static mySecurity getInstance() throws Exception{

if(security == null){

security = new mySecurity()

keygen = KeyGenerator.getInstance("AES")

secretKey = keygen.generateKey()

cipher =Cipher.getInstance("AES")

}

return security

}

//加密

public String encrypt(String str) throws Exception{

cipher.init(Cipher.ENCRYPT_MODE,secretKey)

byte [] src = str.getBytes() byte [] enc = cipher.doFinal(src)

return parseByte2HexStr(enc) }

//解密

public String decrypt(String str) throws Exception{

cipher.init(Cipher.DECRYPT_MODE,secretKey)

byte[] enc = parseHexStr2Byte(str) byte [] dec = cipher.doFinal(enc)

return new String(dec) }

/**将16进制转换为二进制

* @param hexStr

* @return

*/

public static byte[] parseHexStr2Byte(String hexStr) {

if (hexStr.length() <1)

return null

byte[] result = new byte[hexStr.length()/2]

for (int i = 0i<hexStr.length()/2i++) {

int high = Integer.parseInt(hexStr.substring(i*2, i*2+1), 16)

int low = Integer.parseInt(hexStr.substring(i*2+1, i*2+2), 16)

result[i] = (byte) (high * 16 + low)

}

return result

}

/**将二进制转换成16进制

* @param buf

* @return

*/

public static String parseByte2HexStr(byte buf[]) {

StringBuffer sb = new StringBuffer()

for (int i = 0i <buf.lengthi++) {

String hex = Integer.toHexString(buf[i] &0xFF)

if (hex.length() == 1) {

hex = '0' + hex

}

sb.append(hex.toUpperCase())

}

return sb.toString()

}

public static void main(String[] args) throws Exception{

String str = "abc haha 我"

String ss = mySecurity.getInstance().encrypt(str)

System.out.println(ss)

System.out.println(mySecurity.getInstance().decrypt(ss))

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12570027.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存