| 35 | import javax.swing.text.*; |
| 36 | |
| 37 | public class IndexautoDecoder { |
| 38 | |
| 39 | public static JTable table; |
| 40 | public JTabbedPane mainPanel; // 修改为可选面板,主面板 |
| 41 | private JPanel rootJPanel; // 面板一,设置,模块与加解密域名、关键字 |
| 42 | private JPanel rootJPanel2; // 面板二,自带算法加解密 |
| 43 | private JPanel rootJPanel3; // 面板三,接口加解密 |
| 44 | private JPanel rootJPanel4; // 面板四,请求、响应替换 |
| 45 | |
| 46 | public JLabel label7; |
| 47 | public JLabel label4; |
| 48 | |
| 49 | private static JComboBox mChoiceBox5; |
| 50 | private static JComboBox mChoiceBox4; |
| 51 | private static JComboBox mChoiceBox3; |
| 52 | private static JComboBox mChoiceBox2; |
| 53 | private static JComboBox mChoiceBox1; |
| 54 | private static JTextArea keytextField; |
| 55 | private static JTextArea ivtextField; |
| 56 | |
| 57 | public static JTextField regtextField; |
| 58 | public static JTextField regtextField_resp; |
| 59 | |
| 60 | private JButton button1; |
| 61 | private JButton Button2; |
| 62 | private JButton Button2piliang; |
| 63 | |
| 64 | private JButton buttontiqu; |
| 65 | private JButton buttontiqu_resp; |
| 66 | |
| 67 | private JTextArea EncodedtextArea; // 密文 |
| 68 | private JTextArea DecodetextArea; // 明文 |
| 69 | |
| 70 | private JTextArea InputtextArea; // 密文 |
| 71 | private JTextArea OutputtextArea; // 明文 |
| 72 | |
| 73 | private JTextArea InputtextArea_resp; // 密文 |
| 74 | private JTextArea OutputtextArea_resp; // 明文 |
| 75 | |
| 76 | public static JFileChooser fileChooser; |
| 77 | |
| 78 | public static JRadioButton RadioButton1; |
| 79 | public static JRadioButton RadioButton11; |
| 80 | public static JRadioButton RadioButton12; |
| 81 | public static JRadioButton RadioButton2; |
| 82 | public static JRadioButton RadioButtonbase64decode; |
| 83 | public static JTable table2; // 请求包加解密方式 |
| 84 | private JButton Button3; |
| 85 | private JButton Button4; |
| 86 | public static JTable table1; // 响应包加解密方式 |
| 87 | private static JTextField textField3; |
| 88 | private static JTextField textField4; |
| 89 | private static JTextArea textArea1; |
| 90 | private static JTextArea textArea2; // 明文关键字输入栏 words |
| 91 | private static JTextArea textArea3;// 密文关键字输入栏 notwords |
| 92 | |
| 93 | private static JTextArea textDatatestArea; |
| 94 | private static JTextArea textDatatestAreaoutput; |
nothing calls this directly
no test coverage detected