The list of methods to do String Descrypt are organized into topic(s).
byte[]
decrypt(byte[] ciphertextBytes, int r, int n) decrypt
byte[] buffer = new byte[ciphertextBytes.length];
int c1 = 52845;
int c2 = 22719;
for (int i = 0; i < ciphertextBytes.length; i++) {
int cipher = ciphertextBytes[i] & 0xff;
int plain = cipher ^ r >> 8;
buffer[i] = (byte) plain;
r = (cipher + r) * c1 + c2 & 0xffff;
...
int
decrypt(int encrypted, int salt) decrypt encrypted value with salt value by means of xor knowing that double xor with salt yields original value
return encrypted ^ salt;
byte[]
decrypt(String arg0) decrypt
int j1 = 0;
int i;
int j;
int k;
int l;
byte[] abyte0;
char c1;
int i1;
...
String
decrypt(String inString) decrypt
int identifierIndex = (int) inString.charAt(0) - 32;
int associatorIndex = (int) inString.charAt(inString.length() - 1) - 32;
String xlatedString = "";
for (int i = 1; i < inString.length() - 1; i++) {
char inChar = inString.charAt(i);
int pos = cipherPad[associatorIndex].indexOf(inChar);
if (pos == -1) {
xlatedString += inChar;
...
String
decrypt(String s, int offset) decrypt
String n = s;
s = "";
int o = offset * n.length();
for (int i = 0; i < n.length(); i++) {
char c = n.charAt(i);
c -= o;
s += c;
return s;
String
decrypt(String src) decrypt
String ecrt = "";
for (int i = 0; i < src.length(); i++) {
char a = src.charAt(i);
if (a == '#') {
ecrt += "0";
} else if (a == '&') {
ecrt += "1";
} else if (a == '2') {
...