You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A program that encrypts a given text in such a way that, instead of letters, the program outputs the atomic number of the element which chemical symbol corresponds to the encrypted letters, ignoring their case. The space between letters should be replaced with an asterisk, and the space between words should be replaced with two asterisks.
This is a Caesar cipher for both encoding and decoding. The key is an integer from 1 to 25. This cipher rotates the letters of the alphabet (A to Z). The encoding replaces each letter with the 1st to 25th next letter in the alphabet (wrapping Z to A). So key 2 encrypts "HI" to "JK", but key 20 encrypts "HI" to "BC".
A simple and secure Java-based password vault that encrypts and decrypts strings using AES-128 encryption. Perfect for demonstration, learning cryptography in Java, or building your own local password manager.