조회 수 9718 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

Free JavaScripts provided
by The JavaScript Source


<!-- TWO STEPS TO INSTALL ASCII ENCRYPTION:


  1.  Copy the coding into the HEAD of your HTML document

  2.  Add the last code into the BODY of your HTML document  -->


<!-- STEP ONE: Paste this code into the HEAD of your HTML document  -->


<HEAD>


<SCRIPT LANGUAGE="JavaScript">

<!-- Original:  David Salsinha (david.salsinha@popsi.pt) -->


<!-- This script and many more are available free online at -->

<!-- The JavaScript Source!! http://javascript.internet.com -->


<!-- Begin

function Encrypt(theText) {

output = new String;

Temp = new Array();

Temp2 = new Array();

TextSize = theText.length;

for (i = 0; i < TextSize; i++) {

rnd = Math.round(Math.random() * 122) + 68;

Temp[i] = theText.charCodeAt(i) + rnd;

Temp2[i] = rnd;

}

for (i = 0; i < TextSize; i++) {

output += String.fromCharCode(Temp[i], Temp2[i]);

}

return output;

}

function unEncrypt(theText) {

output = new String;

Temp = new Array();

Temp2 = new Array();

TextSize = theText.length;

for (i = 0; i < TextSize; i++) {

Temp[i] = theText.charCodeAt(i);

Temp2[i] = theText.charCodeAt(i + 1);

}

for (i = 0; i < TextSize; i = i+2) {

output += String.fromCharCode(Temp[i] - Temp2[i]);

}

return output;

}

//  End -->

</script>

</HEAD>


<!-- STEP TWO: Copy this code into the BODY of your HTML document  -->


<BODY>


<center>

<form name=encform onsubmit="return false;">

<textarea name=box1 rows=5 cols=50>The quick brown fox jumps over the lazy dog</textarea>

<p>

<input type=button value="Encrypt Box1 to Box2" onClick="this.form.box2.value=Encrypt(this.form.box1.value);">

<p>

<textarea name=box2 rows=5 cols=50></textarea>

<p>

<input type=button value="Decrypt Box2 to Box3" onClick="this.form.box3.value=unEncrypt(this.form.box2.value);">

<p>

<textarea name=box3 rows=5 cols=50></textarea>

</form>

</center>


<p><center>

<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>

by <a href="http://javascriptsource.com">The JavaScript Source</a></font>

</center><p>


<!-- Script Size:  1.83 KB --> 


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1177 System/OS 해커스랩 깨기.. 후후.. ㅋㅋ file hooni 2013.04.23 19807
1176 Etc 플라스터(Plaster) 수업 내용 secret hooni 2016.05.24 0
1175 Develop 프로그램 문서 관리 (Doxygen) hooni 2013.04.23 17834
1174 Develop 프로그래밍에서 foo, bar 함수의 유래 file hooni 2013.06.25 22883
1173 Develop 프로그래밍 소스 관련 사이트.. hooni 2013.04.23 17900
1172 Develop 페이팔에서 돈 찾기 (Paypal withdraw) file hooni 2014.02.20 12745
1171 Etc 티스토리 테이블 html,css 구문 hooni 2013.11.03 17497
1170 System/OS 콘솔에서 패스워드 걸린 zip 압축하는 명령 hooni 2018.03.02 4259
1169 System/OS 컴파일러 수업 자료(교재 : 컴파일러 입문) file hooni 2003.04.23 23434
1168 Develop 캘리포니아 운전면허 족보 file hooni 2017.06.12 2813
1167 Etc 캘리포니아 운전면허 문제 file hooni 2017.07.22 3484
1166 Develop 최근 논문 자료 (2011/01/03, 만현형한테 보낸거..) secret hooni 2013.04.23 10366
1165 Develop 참고하고 지울 자료.. 집에서 바야지.. ㅋㅋ file hooni 2013.04.23 14093
1164 Etc 종합시험 관련 자료 secret hooni 2017.03.15 0
1163 Etc 정보시스템(정보보안)의 위험관리 설명 hooni 2013.04.23 20568
1162 Develop 정리할 자료. file hooni 2015.07.02 2089
Board Pagination Prev 1 2 3 4 5 ... 74 Next
/ 74