- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
function readReverseCrypt(){
if (!cryptStr) return END_OF_INPUT;
while (true){
if (cryptCount >= cryptStr.length) return END_OF_INPUT;
var nextCharacter = cryptStr.charAt(cryptCount);
cryptCount++;
if (rbc[nextCharacter]){
return rbc[nextCharacter];
}
if (nextCharacter == 'A') return 0;
}
return END_OF_INPUT;
}