Home > Article > Backend Development > How to use Caesar? Summary of Caesar instance usage
public class Caesar { public static final String SOURCE = "abcdefghijklmnopqrstuvwxyz"; public static final int LEN = SOURCE.length(); /** * @param args */ public static void main(String[] args) { &nbs
1. JAVA implements caesar Caesar encryption algorithm
# #Introduction: Carsar encryption algorithm is the simplest encryption algorithm. The principle is to move a letter to the corresponding position in the alphabet. For example, enter a and move it by 3 digits. The position of d output after Caesar encryption can be moved circularly. Enter x, then output a
2. Caesar date (find the day of the year for a certain day)
Introduction: Caesar Date (find the day of the year for a certain day)
[Related Q&A Recommendations] :
javascript - Why does Caesars Cipher not return the encrypted string?
#python - I remember there is an open source cipher text guessing cracker Tool, I forgot the name of the package, who knows a hint
The above is the detailed content of How to use Caesar? Summary of Caesar instance usage. For more information, please follow other related articles on the PHP Chinese website!