This commit is contained in:
Your Name 2025-02-28 23:45:23 +03:00
parent ae59f530b6
commit bb64cc3177

View file

@ -85,7 +85,7 @@ public class Encryption {
byte[] encrypted = cipher.doFinal(data.getBytes());
Log.i("Hex", bytesToHex(encrypted));
Log.i("Hex", "---------------------");
return bytesToHex(encrypted);
return randomizeCase(bytesToHex(encrypted));
} catch (Exception e) { Log.i("HEX", e.toString());}
return "";
}