ȸ¿ø°¡ÀԡžÆÀ̵ð/ºñ¹øã±â
ȨÀ¸·Î


¹®ÀÚ¿­ ÀÎÄÚµù - µðÄÚµù ÇÕ´Ï´Ù
18³â Àü
<script language="javascript">
<!--
// ¾Ïȣȭ½Ã »ç¿ëÇÏ´Â ¹®ÀÚ
var char_set = '$%^NOZ1&PQR(./~`"CDEFG!@STUVWZghij}:<pHB*#8uvwx>?[]\',ef34590qrklmnoIJ)_+{st67 abcdAyzKLM2Y';

function crypt_data(crypt_type) {
        var space;
        var char_code;
        var output = "";
        var input = window.input.input_field.value;
        var algorithm = window.input.shift_select.selectedIndex;
        var alpha_length = char_set.length - algorithm;

        algorithm++;

        for(loop=0; loop<input.length; loop++) {
                if(char_set.indexOf(input.charAt(loop)) == -1) {
                        // ¿ø¹® : Program Error: Unknown Character!
                        alert("¿À·ù : Character¸¦ ¾Ë ¼ö ¾ø½À´Ï´Ù.");
                }

                char_code = char_set.indexOf(input.charAt(loop));

                // ÀÎÄÚµù ¸í·É
                if(crypt_type == "encrypt") {
                        if(char_code + algorithm > char_set.length) {
                                space = char_set.length - char_code;
                                char_code = algorithm - space;
                        } else {
                                char_code += algorithm;
                        }
                } else
                // µðÄÚµù ¸í·É
                if(crypt_type == "decrypt") {
                        if(char_code - algorithm < 0) {
                                space = algorithm - char_code;
                                char_code = char_set.length - space;
                        } else {
                                char_code -= algorithm;
                        }
                }
                output += char_set.charAt(char_code);
        }
        window.input.input_field.value = output;
}
//-->
</script>


<center>

<form name="input">
<TEXTAREA name="input_field" cols="70" rows="15"></TEXTAREA><br>

<b>Key : </b>
<select name="shift_select">
<option>1
<option>2
<option>3
<option>4
<option selected>5
<option>6
<option>7
<option>8
<option>9
</select>

<input type="button" value="EnCrypt" onclick="crypt_data('encrypt');">
<input type="button" value="DeCrypt" onclick="crypt_data('decrypt');">
</form>

</center>
ÃßõÃßõ : 358 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
103
¸®´ª½º ¼­¹ö µµ¸ÞÀÎ ±âº» Æ÷Æ® ¸ñ·Ï
102
À©µµ¿ì ¼­¹ö µµ¸ÞÀÎ ÄÁÆ®·Ñ·¯ ±âº» Æ÷Æ® ¸ñ·Ï
101
À©µµ¿ì¼­¹ö ¿ø°Ý Á¢¼Ó ¹æ¹ý
100
ÀÚÁÖ¾²´Â ¸®´ª½º ¼­¹ö ¸í·É¾î
99
¾Æ½ºÅ° ÄÚµå ¾Ïȣȭ/º¹È£È­
98
[KISA]°ø°³ À¥¹æÈ­º® ¼³Ä¡/¿î¿µ µ¿¿µ»ó °¡ÀÌµå ¹èÆ÷
97
¹«´Ü ¸µÅ© ¹æÁöÇϱâ
96
ÀÔ·ÂÆû¿¡ ŸÀÌÇÎÇÏ´Â ¼ø°£ ÄíÅ°¿¡ °ªÀ» ÀúÀåÇÕ´Ï´Ù.
95
IE6 ¼­·Î ´Ù¸¥ µµ¸ÞÀÎ »ç¿ë½Ã ÄíÅ°¹®Á¦ ÇØ°á...
94
ÄíÅ° Ŭ·¡½º
93
ÄíÅ° ¸ðµÎ »èÁ¦Çϱâ
92
/var/log/secure ·Î±×¸¦ ÀÌ¿ëÇÑ IP Deny ÀÚµ¿ µî·Ï ½ºÅ©¸³Æ®
91
Ç÷¡½¬¸¦ ÀÌ¿ëÇÑ °Ô½ÃÆÇ ÀÚµ¿µî·Ï ¹æÁö ¾Ë°í¸®Áò
90
ÀÚ¹Ù½ºÅ©¸³Æ® ij½¬ÆÄÀÏ »ý¼º¾ÈÇϱâ
89
XP Servicepack2, IE7¿¡¼­µµ Æ˾÷â »çÀÌÁî ÀÌ»Ú°Ô Á¶ÀýÇϱâ
88
¼Ò½ºº¸±â ÇÒ °æ¿ì ¼Ò½ºº¸±â âÀÌ ¶ßÁö ¾Ê°ÔÇϱâ
87
¹«´Ü¸µÅ© ¹æÁöÇϱâ
86
ÀͽºÇ÷η¯ ÁÖ¼Òâ¿¡ ÀÌ»Û ¾ÆÀÌÄÜ ³Ö±â
85
head¿¡ »ç¿ëµÇ´Â ¸ÞŸÅ×±× ¹× ±âŸ Å×±×
84
À¥ ¹®¼­ ¾Ïȣȭ ½ºÅ©¸³Æ®
83
CSS ¹× JAVASCRIPT ¼Ò½º È¿°úÀûÀ¸·Î ¼û±â±â
82
textarea¿¡ ÀÔ·ÂµÈ ÅؽºÆ®¸¦ ÄíÅ°·Î ÀúÀåÇÕ´Ï´Ù
81
Ç÷¡½Ã¿¡¼­ ¸¶¿ì½º ¿À¸¥ÂÊ ¸Þ´º »ç¿ë ¸øÇÏ°ÔÇϱâ
80
À̸ÞÀÏ ÁÖ¼Ò¸¦ ÀÔ·ÂÇÏ¸é ¸ÞÀϼöÁý±â¿¡ °É¸®Áö ¾Ê´Â ½ºÅ©¸³Æ®¸¦ »ý¼ºÇÕ´Ï´Ù.
79
ÀͽºÇÃ·Î¾î ½ÃÀÛ ÆäÀÌÁö º¯°æ
78
ÇöÀçÆäÀÌÁö¸¦ ÀμâÇÒ¶§ Ãâ·Â¿ëÁö¿¡ ¾Æ¹« ³»¿ëµµ ¾ÈÂïÈ÷°Ô ¼³Á¤
77
°Ë»ö ¿£Áø
76
ÆäÀÌÁöÀÇ ¼Ò½º¸¦ ¾ÏȣȭÇÏ´Â ¼Ò½ºÀÔ´Ï´Ù
¹®ÀÚ¿­ ÀÎÄÚµù/µðÄÚµù ÇÕ´Ï´Ù
74
µî·ÏµÈ ȸ¿øÀÎÁö üũÇÏ´Â ¼Ò½ºÀÔ´Ï´Ù
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.