小編給大家分享一下Java如何實(shí)現(xiàn)RSA算法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比治多網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式治多網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋治多地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。以下是引用片段: package rsa; import java.math.BigInteger; public class RSA { private long p,q,e,d,n; public RSA(){ int pIndex = (int)(Math.random()*10); int qIndex; int eIndex; do{ qIndex = (int)(Math.random()*10); } while(qIndex==pIndex); do{ eIndex = (int)(Math.random()*10); } while(eIndex==pIndex||eIndex==pIndex); p = 1033; q = 2017; e = 29437; n = p*q; d = calculateD(); } private long calculateD(){ long t0 = 0,t1 = 1,t2 = -1; long r0 = (p-1)*(q-1), m = r0,r1 = e ,r2 = -1; do{ long q = r0/r1; r2 = r0-r1*q; if(r2==0)break; t2 = t0 - t1*q; while(t2<0){ t2+=m; } if(t2>=m){ t2 %= m; } r0 = r1; r1 = r2; t0 = t1; t1 = t2; }while(r2!=0); if(r1!=1){ return 0; } else{ return t2; } } public long getE() { return e; } public long getN() { return n; } public long getD() { return d; } public BigInteger encode(BigInteger data){ return pow(data,d).mod(new BigInteger(n+"")); } public BigInteger decode(BigInteger code){ return pow(code,e).mod(new BigInteger(n+"")); } public BigInteger pow(BigInteger data,long p){ data = data.pow((int)p); return data; } public static void main(String args[]){ RSA rsa = new RSA(); BigInteger data = new BigInteger("222222"); long oldtime = System.currentTimeMillis(); BigInteger code = rsa.encode(data); long newtime = System.currentTimeMillis(); double codetime = ((double)(newtime-oldtime))/1000; oldtime = System.currentTimeMillis(); BigInteger decode = rsa.decode(code); newtime = System.currentTimeMillis(); double decodetime = ((double)(newtime-oldtime))/1000; System.out.println("privateKey:"+rsa.d); System.out.println("publickKey:"+rsa.e); System.out.println("N:"+rsa.n); System.out.println("data:"+data); System.out.println("code:"+code+" time:"+codetime); System.out.println("decode:"+decode+" time:"+decodetime); } } |
以上是“Java如何實(shí)現(xiàn)RSA算法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!