【例子介绍】S-DES加解密程序(JAVA)
JAVA实现S-DES的加解密运算 开发环境:NetBeans 6.1
【相关图片】
【源码结构】
文件清单
└── S_DES
├── build
│ └── classes
│ └── s_des
│ ├── Calculation.class
│ ├── GUI$10.class
│ ├── GUI$11.class
│ ├── GUI$12.class
│ ├── GUI$1.class
│ ├── GUI$2.class
│ ├── GUI$3.class
│ ├── GUI$4.class
│ ├── GUI$5.class
│ ├── GUI$6.class
│ ├── GUI$7.class
│ ├── GUI$8.class
│ ├── GUI$9.class
│ ├── GUI.class
│ └── InitPSW.class
├── build.xml
├── dist
│ ├── javadoc
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-files
│ │ │ ├── index-1.html
│ │ │ ├── index-2.html
│ │ │ ├── index-3.html
│ │ │ ├── index-4.html
│ │ │ ├── index-5.html
│ │ │ ├── index-6.html
│ │ │ ├── index-7.html
│ │ │ └── index-8.html
│ │ ├── index.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── resources
│ │ │ └── inherit.gif
│ │ ├── s_des
│ │ │ ├── Calculation.html
│ │ │ ├── class-use
│ │ │ │ ├── Calculation.html
│ │ │ │ ├── GUI.html
│ │ │ │ └── InitPSW.html
│ │ │ ├── GUI.html
│ │ │ ├── InitPSW.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── README.TXT
│ └── S_DES.jar
├── manifest.mf
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
├── src
│ └── s_des
│ ├── Calculation.java
│ ├── GUI.form
│ ├── GUI.java
│ └── InitPSW.java
└── test
15 directories, 58 files
评论