├── README.md └── encrypt ├── .gitignore ├── pom.xml └── src └── main ├── java └── com │ └── cxytiandi │ └── encrypt │ ├── App.java │ ├── controller │ └── IndexController.java │ ├── praram │ └── StuInfo.java │ └── util │ └── AESUtils.java └── resources ├── application.properties ├── static └── js │ ├── aes.js │ ├── crypto-js.js │ ├── key.js │ ├── mode-ecb.js │ ├── pad-zeropadding.js │ └── security.js └── templates └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # spring-boot-starter-encrypt-example 2 | -------------------------------------------------------------------------------- /encrypt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/.gitignore -------------------------------------------------------------------------------- /encrypt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/pom.xml -------------------------------------------------------------------------------- /encrypt/src/main/java/com/cxytiandi/encrypt/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/java/com/cxytiandi/encrypt/App.java -------------------------------------------------------------------------------- /encrypt/src/main/java/com/cxytiandi/encrypt/controller/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/java/com/cxytiandi/encrypt/controller/IndexController.java -------------------------------------------------------------------------------- /encrypt/src/main/java/com/cxytiandi/encrypt/praram/StuInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/java/com/cxytiandi/encrypt/praram/StuInfo.java -------------------------------------------------------------------------------- /encrypt/src/main/java/com/cxytiandi/encrypt/util/AESUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/java/com/cxytiandi/encrypt/util/AESUtils.java -------------------------------------------------------------------------------- /encrypt/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/application.properties -------------------------------------------------------------------------------- /encrypt/src/main/resources/static/js/aes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/static/js/aes.js -------------------------------------------------------------------------------- /encrypt/src/main/resources/static/js/crypto-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/static/js/crypto-js.js -------------------------------------------------------------------------------- /encrypt/src/main/resources/static/js/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/static/js/key.js -------------------------------------------------------------------------------- /encrypt/src/main/resources/static/js/mode-ecb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/static/js/mode-ecb.js -------------------------------------------------------------------------------- /encrypt/src/main/resources/static/js/pad-zeropadding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/static/js/pad-zeropadding.js -------------------------------------------------------------------------------- /encrypt/src/main/resources/static/js/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/static/js/security.js -------------------------------------------------------------------------------- /encrypt/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinjihuan/spring-boot-starter-encrypt-example/HEAD/encrypt/src/main/resources/templates/index.html --------------------------------------------------------------------------------