這篇文章將為大家詳細(xì)講解有關(guān)使用java怎么實(shí)現(xiàn)一個(gè)可逆加密算法,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
桃山網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),桃山網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為桃山成百上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營(yíng)銷網(wǎng)站建設(shè)要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的桃山做網(wǎng)站的公司定做!
package cn.exam.signup.service.pay.util; import java.math.BigInteger; import java.util.Arrays; public class EncrUtil { private static final int RADIX = 16; private static final String SEED = "0933910847463829232312312"; public static final String encrypt(String password) { if (password == null) return ""; if (password.length() == 0) return ""; BigInteger bi_passwd = new BigInteger(password.getBytes()); BigInteger bi_r0 = new BigInteger(SEED); BigInteger bi_r1 = bi_r0.xor(bi_passwd); return bi_r1.toString(RADIX); } public static final String decrypt(String encrypted) { if (encrypted == null) return ""; if (encrypted.length() == 0) return ""; BigInteger bi_confuse = new BigInteger(SEED); try { BigInteger bi_r1 = new BigInteger(encrypted, RADIX); BigInteger bi_r0 = bi_r1.xor(bi_confuse); return new String(bi_r0.toByteArray()); } catch (Exception e) { return ""; } } public static void main(String args[]){ System.out.println(Arrays.toString(args)); if(args==null || args.length!=2) return; if("-e".equals(args[0])){ System.out.println(args[1]+" encrypt password is "+encrypt(args[1])); }else if("-d".equals(args[0])){ System.out.println(args[1]+" decrypt password is "+decrypt(args[1])); }else{ System.out.println("args -e:encrypt"); System.out.println("args -d:decrypt"); } } }
運(yùn)行以上代碼:
[-e, 1234567890]
1234567890 encrypt password is 313233376455276898a5[-d, 313233376455276898a5]
313233376455276898a5 decrypt password is 1234567890
關(guān)于使用java怎么實(shí)現(xiàn)一個(gè)可逆加密算法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。