Posts

Showing posts with the label Open Source Project

CryptoNOTE Application

 Open Source Java Project While the application is being debugged, let's do the simplest encryption - add 1 to the code of each character.      //==========================================================     //   Text oflameron.txt CODING     //==========================================================     public void Code() {         char ec = 0; //One character from the read text         String KTxt = ""; //Encoded text         elenght = str.length(); //Amount of data from EditText to encode         // The number of characters in the oflameron.txt file - in the elenght variable         // Encoding text from str variable         // Encoding is simple - increase the character code by 1   ...