Contents

조회 수 8871 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
529 Develop [iOS] 시뮬레이터에 푸시 알림을 보내는 방법 file hooni 2021.10.13 1996
528 Develop [ios] 스터디 자료 (from 종길M) secret hooni 2013.06.04 0
527 Develop [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기 hooni 2014.11.19 1650
526 Develop [ios] 소소한 팁 (Rect,Point,Path,URL 등) hooni 2013.08.08 29528
525 Develop [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인 hooni 2015.04.28 2154
524 Develop [ios] 새로 만들고 있는 DateMemo file hooni 2016.07.12 724
523 Develop [ios] 상위 ViewController 가져오기 hooni 2015.10.12 1161
522 Develop [ios] 비디오,네트워크,소셜로그인 테스트 file hooni 2017.04.04 786
521 Develop [ios] 비동기 블럭 코드 예제 hooni 2014.11.21 899
520 Develop [ios] 배열(NSArray) 연산과 간단한 애니메이션(split images) hooni 2013.10.31 45525
519 Develop [ios] 미스터피자(Mr.pizza) 어플 file hooni 2013.04.23 42680
518 Develop [ios] 문자열로 함수 실행하기 (eval 함수처럼) hooni 2015.02.10 925
Board Pagination Prev 1 ... 22 23 24 25 26 27 28 29 30 31 ... 71 Next
/ 71