데이터 암호화 PHP JS rsa 데이터 암호화 전송 구현 코드

WBOY
풀어 주다: 2016-07-29 08:44:37
원래의
1289명이 탐색했습니다.

JS 사이드 코드:

코드 복사 코드는 다음과 같습니다.


//文件base64.js:
var b64map="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 /";
var b64pad="=";
function hex2b64(h) {
var i;
var c;
var ret = "";
for(i = 0; i 3 c =parseInt(h.substring(i,i 3),16);
ret = b64map.charAt(c >> 6) b64map.charAt(c & 63);
}
if(i 1 == h.length) {
c =parseInt(h.substring(i,i 1),16);
ret = b64map.charAt(c << 2);
}
else if(i 2 == h.length) {
c =parseInt(h.substring(i,i 2),16);
ret = b64map.charAt(c >> 2) b64map.charAt((c & 3) << 4);
}
while((ret.length & 3) > 0) ret = b64pad;
반환 리트;
}
// base64 문자열을 16진수로 변환
function b64tohex(s) {
var ret = ""
var i;
var k = 0; // b64 상태, 0-3
var slop;
for(i = 0; i if(s.charAt(i) == b64pad) break;
v = b64map.indexOf(s.charAt(i));
if(v if(k == 0) {
ret = int2char(v >> 2);
슬롭 = v & 3;
k = 1;
}
else if(k == 1) {
ret = int2char((slop << 2) | (v >4));
슬롭 = v & 0xf;
k = 2;
}
else if(k == 2) {
ret = int2char(slop);
ret = int2char(v >> 2);
슬롭 = v & 3;
k = 3;
}
else {
ret = int2char((slop << 2) | (v >> 4));
ret = int2char(v & 0xf);
k = 0;
}
}
if(k == 1)
ret = int2char(slop << 2);
반환 리트;
}
// base64 문자열을 바이트/숫자 배열로 변환
function b64toBA(s) {
//지금은 b64tohex에 피기백하고 나중에 최적화하세요
var h = b64tohex(s );
var i;
var a = new Array();
for(i = 0; 2*i < h.length; i) {
a[i] = parsInt(h.substring(2*i,2*i 2),16);
}
return a;
}
#文件jsbn.js
// Copyright (c) 2005 Tom Wu
// All Rights Reserved.
// 자세한 내용은 '라이센스'를 참조하세요.
// 기본 JavaScript BN 라이브러리 - RSA 암호화에 유용한 하위 집합입니다.
// 자릿수당 비트 수
var dbits;
// 자바스크립트 엔진 분석
var canary = 0xdeadbeefcafe;
var j_lm = ((canary&0xffffff)==0xefcafe);
// (공개) 생성자
function BigInteger(a,b,c) {
if(a != null)
if("number" == typeof a) this.fromNumber(a ,기원전);
else if(b == null && "string" != typeof a) this.fromString(a,256);
그렇지 않으면 this.fromString(a,b);
}
// 새로운 BigInteger 반환, 설정 해제된 BigInteger
function nbi() { return new BigInteger(null); }
// am: w_j = (x*this_i) 계산, 캐리 전파,
// c는 초기 캐리, 최종 캐리를 반환합니다.
// c < 3*d값, x < 2*d값, this_i < dvalue
// 이 환경에서 작동하는 가장 빠른 것을 선택해야 합니다.
// am1: 단일 배수를 사용하고 나누어서 상위 비트를 얻습니다.
//
// 최대 내부 값 = 2*dvalue^2-2*dvalue이므로 최대 숫자 비트는 26이어야 합니다( < 2^53)
function am1(i,x,w,j,c,n) {
while(--n >= 0) {
var v = x*this[i ] w[j] c;
c = Math.floor(v/0x4000000);
w[j ] = v&0x3ffffff;
}
c를 반환합니다.
}
// am2는 큰 다중 추출을 완전히 피합니다.
// 비트 단위 연산을 수행하므로 최대 자릿수 비트는 <= 30이어야 합니다.
// 최대 2*hdvalue^2-hdvalue-1 (< 2^31) 값에 대해
function am2( i,x,w,j,c,n) {
var xl = x&0x7fff, xh = x>>15;
while(--n >= 0) {
var l = this[i]&0x7fff;
var h = this[i ]>>15;
var m = xh*l h*xl;
l = xl*l ((m&0x7fff)<<15) w[j] (c&0x3fffffff);
c = (l>>>30) (m>>15) xh*h (c>>>30);
w[j ] = l&0x3fffffff;
}
c를 반환합니다.
}
// 일부
// 브라우저는 32비트 숫자를 처리할 때 속도가 느려지므로 최대 자릿수 비트를 28로 설정하세요.
function am3(i,x,w,j,c,n) {
var xl = x&0x3fff, xh = x>>14;
while(--n >= 0) {
var l = this[i]&0x3fff;
var h = this[i ]>>14;
var m = xh*l h*xl;
l = xl*l ((m&0x3fff)<<14) w[j] c;
c = (l>>28) (m>14) xh*h;
w[j ] = l&0xfffffff;
}
c를 반환합니다.
}
if(j_lm && (navigator.appName == "Microsoft Internet Explorer")) {
BigInteger.prototype.am = am2;
dbit = 30;
}
else if(j_lm && (navigator.appName != "Netscape")) {
BigInteger.prototype.am = am1;
dbit = 26;
}
else { // Mozilla/Netscape는 am3을 선호하는 것 같습니다.
BigInteger.prototype.am = am3;
dbit = 28;
}
BigInteger.prototype.DB = dbits;
BigInteger.prototype.DM = ((1BigInteger.prototype.DV = (1var BI_FP = 52;
BigInteger.prototype.FV = Math.pow(2,BI_FP);
BigInteger.prototype.F1 = BI_FP-dbits;
BigInteger.prototype.F2 = 2*dbits-BI_FP;
// 숫자 변환
var BI_RM = "0123456789abcdefghijklmnopqrstuvwxyz";
var BI_RC = new Array();
var rr,vv;
rr = "0".charCodeAt(0);
for(vv = 0; vv rr = "a".charCodeAt(0);
for(vv = 10; vv rr = "A".charCodeAt(0);
for(vv = 10; vv 함수 int2char(n) { return BI_RM.charAt(n); }
function intAt(s,i) {
var c = BI_RC[s.charCodeAt(i)];
return (c==null)?-1:c;
}
// (보호됨) 이것을 r에 복사
function bnpCopyTo(r) {
for(var i = this.t-1; i >= 0; --i) r [i] = 이[i];
r.t = this.t;
r.s = this.s;
}
// (보호됨) 정수 값 x에서 설정됨, -DV <= x < DV
function bnpFromInt(x) {
this.t = 1;
this.s = (x<0)?-1:0;
if(x > 0) this[0] = x;
else if(x < -1) this[0] = x DV;
그렇지 않으면 this.t = 0;
}
// 값으로 초기화된 bigint 반환
function nbv(i) { var r = nbi(); r.fromInt(i); r을 반환; }
// (보호됨) 문자열과 기수로 설정
function bnpFromString(s,b) {
var k;
if(b == 16) k = 4;
else if(b == 8) k = 3;
else if(b == 256) k = 8; // 바이트 배열
else if(b == 2) k = 1;
else if(b == 32) k = 5;
else if(b == 4) k = 2;
else { this.fromRadix(s,b); 반품; }
this.t = 0;
this.s = 0;
var i = s.length, mi = false, sh = 0;
while(--i >= 0) {
var x = (k==8)?s[i]&0xff:intAt(s,i);
if(x < 0) {
if(s.charAt(i) == "-") mi = true;
계속;
}
미 = 거짓;
if(sh == 0)
this[this.t ] = x;
else if(sh k > this.DB) {
this[this.t-1] |= (x&((1<(this.DB-sh))-1))< <쉬;
this[this.t ] = (x>>(this.DB-sh));
}
else
this[this.t-1] |= xsh=k;
if(sh >= this.DB) sh -= this.DB;
}
if(k == 8 && (s[0]&0x80) != 0) {
this.s = -1;
if(sh > 0) this[this.t-1] |= ((1}
this.clamp();
if(mi) BigInteger.ZERO.subTo(this,this);
}
// (보호됨) 과도한 상위 단어 차단
function bnpClamp() {
var c = this.s&this.DM;
while(this.t > 0 && this[this.t-1] == c) --this.t;
}
// (공개) 주어진 기수로 문자열 표현을 반환합니다.
function bnToString(b) {
if(this.s < 0) return "-" this.negate().toString (비);
var k;
if(b == 16) k = 4;
else if(b == 8) k = 3;
else if(b == 2) k = 1;
else if(b == 32) k = 5;
else if(b == 4) k = 2;
그렇지 않으면 this.toRadix(b)를 반환하세요.
var km = (1<var p = this.DB-(i*this.DB)%k;
if(i-- > 0) {
if(p < this.DB && (d = this[i]>>p) > 0) { m = true; r = int2char(d); }
while(i >= 0) {
if(p < k) {
d = (this[i]&((1<d |= this[--i]>>(p =this.DB-k);
}
else {
d = (this[i]>>(p-=k))&km;
if(p <= 0) { p = this.DB; --나; }
}
if(d > 0) m = true;
if(m) r = int2char(d);
}
}
return m?r:"0";
}
// (공개) -this
function bnNegate() { var r = nbi(); BigInteger.ZERO.subTo(this,r); r을 반환; }
// (공개) |this|
함수 bnAbs() { return (this.s<0)?this.negate():this; }
// (공개) > a, - 이것이 < a, 같으면 0
function bnCompareTo(a) {
var r = this.s-a.s;
if(r != 0) return r;
var i = this.t;
r = i-a.t;
if(r != 0) return r;
while(--i >= 0) if((r=this[i]-a[i]) != 0) return r;
0을 반환합니다.
}
// 정수 x의 비트 길이를 반환합니다.
function nbits(x) {
var r = 1, t;
if((t=x>>>16) != 0) { x = t; r = 16; }
if((t=x>>8) != 0) { x = t; r = 8; }
if((t=x>>4) != 0) { x = t; r = 4; }
if((t=x>>2) != 0) { x = t; r = 2; }
if((t=x>>1) != 0) { x = t; r = 1; }
r을 반환;
}
// (공개) "this"의 비트 수를 반환합니다.
function bnBitLength() {
if(this.t <= 0) return 0;
return this.DB*(this.t-1) nbits(this[this.t-1]^(this.s&this.DM));
}
// (보호됨) r = this << n*DB
function bnpDLShiftTo(n,r) {
var i;
for(i = this.t-1; i >= 0; --i) r[i n] = this[i];
for(i = n-1; i >= 0; --i) r[i] = 0;
r.t = this.t n;
r.s = this.s;
}
// (보호됨) r = this >> n*DB
function bnpDRShiftTo(n,r) {
for(var i = n; i < this.t; i) r[i-n] = this[i];
r.t = Math.max(this.t-n,0);
r.s = this.s;
}
// (보호됨) r = this << n
function bnpLShiftTo(n,r) {
var bs = n%this.DB;
var cbs = this.DB-bs;
var bm = (1<var ds = Math.floor(n/this.DB), c = (this.s<for(i = this.t-1; i >= 0; --i) {
r[i ds 1] = (this[i]>>cbs)|c;
c = (this[i]&bm)<}
for(i = ds-1; i >= 0; --i) r[i] = 0;
r[ds] = c;
r.t = this.t ds 1;
r.s = this.s;
r.clamp();
}
// (보호됨) r = this >> n
함수 bnpRShiftTo(n,r) {
r.s = this.s;
var ds = Math.floor(n/this.DB);
if(ds >= this.t) { r.t = 0; 반품; }
var bs = n%this.DB;
var cbs = this.DB-bs;
var bm = (1<r[0] = this[ds]>>bs;
for(var i = ds 1; i < this.t; i) {
r[i-ds-1] |= (this[i]&bm)<r[i-ds] = this[i]>>bs;
}
if(bs > 0) r[this.t-ds-1] |= (this.s&bm)<r.t = this.t-ds;
r.clamp();
}
// (보호됨) r = this - a
function bnpSubTo(a,r) {
var i = 0, c = 0, m = Math.min(a.t,this. 티);
while(i < m) {
c = this[i]-a[i];
r[i ] = c&this.DM;
c>>= this.DB;
}
if(a.t < this.t) {
c -= a.s;
while(i < this.t) {
c = this[i];
r[i ] = c&this.DM;
c>>= this.DB;
}
c = this.s;
}
else {
c = this.s;
while(i < a.t) {
c -= a[i];
r[i ] = c&this.DM;
c>>= this.DB;
}
c -= a.s;
}
r.s = (c<0)?-1:0;
if(c < -1) r[i ] = this.DV c;
else if(c > 0) r[i ] = c;
r.t = i;
r.clamp();
}
// (보호됨) r = this * a, r != this,a (HAC 14.12)
// "this"는 해당되는 경우 더 큰 값이어야 합니다.
function bnpMultiplyTo(a,r) {
var x = this.abs(), y = a.abs();
var i = x.t;
r.t = i y.t;
while(--i >= 0) r[i] = 0;
for(i = 0; i r.s = 0;
r.clamp();
if(this.s != a.s) BigInteger.ZERO.subTo(r,r);
}
// (보호됨) r = this^2, r != this (HAC 14.16)
function bnpSquareTo(r) {
var x = this.abs();
var i = r.t = 2*x.t;
while(--i >= 0) r[i] = 0;
for(i = 0; i var c = x.am(i,x[i],r,2*i,0,1);
if((r[i x.t] =x.am(i 1,2*x[i],r,2*i 1,c,x.t-i-1)) >= x.DV) {
r[i x.t] -= x.DV;
r[i x.t 1] = 1;
}
}
if(r.t > 0) r[r.t-1] = x.am(i,x[i],r,2*i,0,1);
r.s = 0;
r.clamp();
}
// (보호됨) 이것을 m, 몫, 나머지로 나누어 q, r로 나눕니다(HAC 14.20)
// r != q, this != m. q 또는 r은 null일 수 있습니다.
function bnpDivRemTo(m,q,r) {
var pm = m.abs();
if(pm.t <= 0) return;
var pt = this.abs();
if(pt.t < pm.t) {
if(q != null) q.fromInt(0);
if(r != null) this.copyTo(r);
반환;
}
if(r == null) r = nbi();
var y = nbi(), ts = this.s, ms = m.s;
var nsh = this.DB-nbits(pm[pm.t-1]); // 모듈러스 정규화
if(nsh > 0) { pm.lShiftTo(nsh,y); pt.lShiftTo(nsh,r); }
else { pm.copyTo(y); pt.copyTo(r); }
var ys = y.t;
var y0 = y[ys-1];
if(y0 == 0) return;
var yt = y0*(1<1)?y[ys-2]>>this.F2:0);
var d1 = this.FV/yt, d2 = (1var i = r.t, j = i-ys, t = (q==null)?nbi():q;
y.dlShiftTo(j,t);
if(r.compareTo(t) >= 0) {
r[r.t ] = 1;
r.subTo(t,r);
}
BigInteger.ONE.dlShiftTo(ys,t);
t.subTo(y,y); // "음수" y이므로 나중에 sub를 am으로 바꿀 수 있습니다.
while(y.t < ys) y[y.t ] = 0;
while(--j >= 0) {
// 몫 추정
var qd = (r[--i]==y0)?this.DM:Math.floor(r[ i]*d1 (r[i-1] e)*d2);
if((r[i] =y.am(0,qd,r,j,0,ys)) < qd) { // 시도해 보세요
y.dlShiftTo(j,t);
r.subTo(t,r);
while(r[i] < --qd) r.subTo(t,r);
}
}
if(q != null) {
r.drShiftTo(ys,q);
if(ts != ms) BigInteger.ZERO.subTo(q,q);
}
r.t = ys;
r.clamp();
if(nsh > 0) r.rShiftTo(nsh,r); // 나머지 비정규화
if(ts < 0) BigInteger.ZERO.subTo(r,r);
}
// (공개) 이 모드 a
function bnMod(a) {
var r = nbi();
this.abs().divRemTo(a,null,r);
if(this.s < 0 && r.compareTo(BigInteger.ZERO) > 0) a.subTo(r,r);
r을 반환합니다;
}
// "클래식" 알고리즘을 사용한 모듈식 축소
function Classic(m) { this.m = m; }
function cConvert(x) {
if(x.s < 0 || x.compareTo(this.m) >= 0) return x.mod(this.m);
그렇지 않으면 x를 반환합니다.
}
function cRevert(x) { return x; }
function cReduce(x) { x.divRemTo(this.m,null,x); }
function cMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); }
function cSqrTo(x,r) { x.squareTo(r); this.reduce(r); }
Classic.prototype.convert = cConvert;
Classic.prototype.revert = cRevert;
Classic.prototype.reduce = cReduce;
Classic.prototype.mulTo = cMulTo;
Classic.prototype.sqrTo = cSqrTo;
// (보호됨) return "-1/this % 2^DB"; Mont에게 유용합니다. 감소
// 정당화:
// xy == 1 (mod m)
// xy = 1km
// xy(2-xy) = (1km)(1-km )
// x[y(2-xy)] = 1-k^2m^2
// x[y(2-xy)] == 1 (mod m^2)
/ / y가 1/x mod m이면 y(2-xy)는 1/x mod m^2입니다.
// 크기를 유지하려면 각 단계에서 x와 y(2-xy)를 m^2씩 줄여야 합니다. 경계.
// JS는 C/C와 다르게 "오버플로"를 곱하므로 여기서는 주의가 필요합니다.
function bnpInvDigit() {
if(this.t < 1) return 0;
var x = this[0];
if((x&1) == 0) return 0;
var y = x&3; // y == 1/x mod 2^2
y = (y*(2-(x&0xf)*y))&0xf; // y == 1/x mod 2^4
y = (y*(2-(x&0xff)*y))&0xff; // y == 1/x mod 2^8
y = (y*(2-(((x&0xffff)*y)&0xffff)))&0xffff; // y == 1/x mod 2^16
// 마지막 단계 - 역 mod DV를 직접 계산합니다.
// 16 < DB <= 32이고 48비트 정수를 처리할 수 있다고 가정합니다.
y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits
// 우리는 정말로 음의 역을 원하고, -DV < y < DV
return (y>0)?this.DV-y:-y;
}
// 몽고메리 감소
function Montgomery(m) {
this.m = m;
this.mp = m.invDigit();
this.mpl = this.mp&0x7fff;
this.mph = this.mp>>15;
this.um = (1this.mt2 = 2*m.t;
}
// xR mod m
function montConvert(x) {
var r = nbi();
x.abs().dlShiftTo(this.m.t,r);
r.divRemTo(this.m,null,r);
if(x.s 0) this.m.subTo(r,r);
r을 반환합니다;
}
// x/R mod m
function montRevert(x) {
var r = nbi();
x.copyTo(r);
this.reduce(r);
r을 반환합니다;
}
// x = x/R mod m (HAC 14.32)
function montReduce(x) {
while(x.t <= this.mt2) // 패드 x이므로 am이 충분합니다. 나중에 방
x[x.t ] = 0;
for(var i = 0; i < this.m.t; i) {
// u0 = x[i]*mp mod DV를 계산하는 더 빠른 방법
var j = x[i]&0x7fff ;
var u0 = (j*this.mpl (((j*this.mph (x[i]>>15)*this.mpl)&this.um)<<15))&x.DM ;
// am을 사용하여 곱셈-시프트-덧셈을 하나의 호출로 결합합니다.
j = i this.m.t;
x[j] = this.m.am(0,u0,x,i,0,this.m.t);
// 캐리 전파
while(x[j] >= x.DV) { x[j] -= x.DV; x[j] ; }
}
x.clamp();
x.drShiftTo(this.m.t,x);
if(x.compareTo(this.m) >= 0) x.subTo(this.m,x);
}
// r = "x^2/R mod m"; x != r
function montSqrTo(x,r) { x.squareTo(r); this.reduce(r); }
// r = "xy/R 모드 m"; x,y != r
function montMulTo(x,y,r) { x.multiplyTo(y,r); this.reduce(r); }
Montgomery.prototype.convert = montConvert;
Montgomery.prototype.revert = montRevert;
Montgomery.prototype.reduce = montReduce;
Montgomery.prototype.mulTo = montMulTo;
Montgomery.prototype.sqrTo = montSqrTo;
// (보호됨) 짝수인 경우 true
function bnpIsEven() { return ((this.t>0)?(this[0]&1):this.s) == 0; }
// (보호됨) this^e, e < 2^32, "r"을 사용하여 sqr 및 mul 수행(HAC 14.79)
function bnpExp(e,z) {
if(e > 0xffffffff || e < 1) return BigInteger.ONE;
var r = nbi(), r2 = nbi(), g = z.convert(this), i = nbits(e)-1;
g.copyTo(r);
while(--i >= 0) {
z.sqrTo(r,r2);
if((e&(1 0) z.mulTo(r2,g,r);
else { var t = r; r = r2; r2 = 티; }
}
return z.revert(r);
}
// (공개) this^e % m, 0 <= e < 2^32
function bnModPowInt(e,m) {
var z;
if(e < 256 || m.isEven()) z = new Classic(m); else z = 새로운 몽고메리(m);
return this.exp(e,z);
}
// 보호됨
BigInteger.prototype.copyTo = bnpCopyTo;
BigInteger.prototype.fromInt = bnpFromInt;
BigInteger.prototype.fromString = bnpFromString;
BigInteger.prototype.clamp = bnpClamp;
BigInteger.prototype.dlShiftTo = bnpDLShiftTo;
BigInteger.prototype.drShiftTo = bnpDRShiftTo;
BigInteger.prototype.lShiftTo = bnpLShiftTo;
BigInteger.prototype.rShiftTo = bnpRShiftTo;
BigInteger.prototype.subTo = bnpSubTo;
BigInteger.prototype.multiplyTo = bnpMultiplyTo;
BigInteger.prototype.squareTo = bnpSquareTo;
BigInteger.prototype.divRemTo = bnpDivRemTo;
BigInteger.prototype.invDigit = bnpInvDigit;
BigInteger.prototype.isEven = bnpIsEven;
BigInteger.prototype.exp = bnpExp;
// 공개
BigInteger.prototype.toString = bnToString;
BigInteger.prototype.negate = bnNegate;
BigInteger.prototype.abs = bnAbs;
BigInteger.prototype.compareTo = bnCompareTo;
BigInteger.prototype.bitLength = bnBitLength;
BigInteger.prototype.mod = bnMod;
BigInteger.prototype.modPowInt = bnModPowInt;
// "상수"
BigInteger.ZERO = nbv(0);
BigInteger.ONE = nbv(1);
#文件prng4.js
// prng4.js - Arcfour를 PRNG
함수로 사용 Arcfour() {
this.i = 0;
this.j = 0;
this.S = new Array();
}
// 각각 [0..255]의 정수 배열인 키에서 arcfour 컨텍스트를 초기화합니다.
function ARC4init(key) {
var i, j, t;
for(i = 0; i < 256; i)
this.S[i] = i;
j = 0;
for(i = 0; i < 256; i) {
j = (j this.S[i] key[i % key.length]) & 255;
t = this.S[i];
this.S[i] = this.S[j];
this.S[j] = t;
}
this.i = 0;
this.j = 0;
}
function ARC4next() {
var t;
this.i = (this.i 1) & 255;
this.j = (this.j this.S[this.i]) & 255;
t = this.S[this.i];
this.S[this.i] = this.S[this.j];
this.S[this.j] = t;
return this.S[(t this.S[this.i]) & 255];
}
Arcfour.prototype.init = ARC4init;
Arcfour.prototype.next = ARC4next;
// 여기에 RNG 생성자를 연결하세요.
function prng_newstate() {
return new Arcfour();
}
// 풀 크기는 4의 배수이고 32보다 커야 합니다.
// 풀 크기의 바이트 배열이 init()에 전달됩니다.
var rng_psize = 256 ;
文件:rng.js
// 난수 생성기 - PRNG 백엔드가 필요합니다. prng4.js
// 최상의 결과를 얻으려면
// // 공개 지수 읽기
$public = (int) Expect($raw[$i], "publicExpont: ");
// 개인 지수 읽기
expect($raw[$i 1], "privateExComponent:");
for($i = 2; $raw[$i][0] == ' '; $i ) $privateRaw .= 트림($raw[$i]);
//
expect($raw[$i], "prime1:");
// bcmath를 10진수 형식으로 변환
$modulus = bc_hexdec($modulusRaw);
$private = bc_hexdec($privateRaw);
반환 배열($keylength, $modulus['php'], $public, $private['php'],$modulus['js'], $private['js']);
}
/*
* "XX:YY:ZZ:..." 형식의 16진수를 10진수로 변환
* BCmath를 사용하지만 구성 요소에 대한 표준 일반 16진수 함수
*/
함수 bc_hexdec($hex)
{
$coefficients =Explode(":", $hex);
$result_js= implode("",$coefficients);
$i = 0;
$결과 = 0;
foreach(array_reverse($coefficients) as $coefficient)
{
$mult = bcpow(256, $i );
$result = bcadd($result, bcmul(hexdec($coefficient), $mult));
}
return array('php'=>$result,'js'=>$result_js);
}
/*
* 문자열에 주어진 접두사가 있으면 나머지를 반환합니다.
* 그렇지 않으면 오류가 발생하고 죽습니다.
*/
function Expect($str, $prefix)
{
if(substr($str, 0, strlen($prefix)) == $prefix)
return substr($str, strlen($prefix));
else
die("오류: $prefix 예상");
}


整套加密及解密적방법은 本人적测试环境为php5.3 WIN7
상면所有文件下载:RSAFILE

以上就介绍了数据加密 PHP JS rsa数据加密传输实现代码, 包括了数据加密方了内容, 希望对PHP教程兴趣的朋友有所帮助。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿