Java Small Knowledge point------The simplest encryption algorithm (XOR or encryption)

Source: Internet
Author: User
Tags decrypt

The simplest code is given below, which adds additional functionality to the code, such as outputting the encrypted string to a file, reading the string to be encrypted or decrypted from the file ...

public class Encryption {//XOR/encryption algorithm public static void main (string[] args) {String password= "Happy Mid-Autumn Festival ... ";//to encrypt or decrypt the string Char[]array=password.tochararray ();//Gets the character array for (int i=0;i<array.length;i++)//Traversal character array {array[i]= ( Char) (Array[i] ^ 20140908);//For each array element, the XOR value can choose}system.out.println ("Encrypt or decrypt the result as follows:"); System.out.println (new String (array));//output encryption or decryption result}}
Results:

The results of encryption or decryption are as follows:
??? ᴼ according to the data


If

String password= "<span style=" FONT-SIZE:18PX; >???? According to According to </span> ";
Results:

The results of encryption or decryption are as follows:
Happy Mid-Autumn Festival ...

Java Small Knowledge point------The simplest encryption algorithm (XOR or encryption)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.