Op Imp
Op Imp
This Java program creates a Graphical User Interface (GUI) for encrypting and decrypting text
using different cipher techniques.
javax.swing.*: Allows us to create GUI components like windows, buttons, text fields,
and labels.
java.awt.*: Used for designing the layout of the GUI.
java.awt.event.*: Helps us detect button clicks and other user actions.
This creates a new class called CipherGUI. A class is like a blueprint that defines how
something behaves in Java.
A