1. char -> AsciiCode
'A'.charCodeAt() => 65 , 'AB'.charCodeAt(1) => 66
2. AsciiCode -> char
String.fromCharCode(65) => 'A'
//Ascii를 이용한 간단한 암호화 알고리듬.
function encrypt(str) { //입력이 length=7자리 정도는 된다고 보면 'ABCDEFG'
//ascii값에 (index+1)더하기. A+1, B+2, C+3.. G+7
let rotatedStr = '';
for (let i = 0; i < str.length; i ++) {
rotatedStr = rotatedStr + String.fromCharCode(str.charCodeAt(i) + ( i +1 ))
}
//로테이션 시키고 //중간에 양념넣기
let tempStr = '0xe0' + rotatedStr.substring(3) + 'T2n0' + rotatedStr.substring(0,3); //(4) + 4 + (4) +[3] : DEFG + TEMP + ABC
return tempStr;
}
function decrypt(tempStr) { //length:11
//양념빼면서 로테이션 해제 //3+4로 복귀
let rotatedStr = tempStr.substring(tempStr.length - 3) + tempStr.substring(4, tempStr.length-7 ) //뒤 + 앞.
let str = '';
for (let i = 0; i < rotatedStr.length; i ++) {
str = str + String.fromCharCode(rotatedStr.charCodeAt(i) - ( i +1 ));
}
return str;
}