├── .gitignore ├── LICENSE ├── README.md ├── ciphers ├── __init__.py ├── aes_cbc.py ├── aes_ecb.py ├── aes_gcm.py ├── aes_rsa.py ├── des.py ├── des3.py ├── dynamic_key.py ├── rsa.py ├── sm2.py ├── sm2_sm4.py └── sm4_cbc.py ├── manager.py ├── requirements.txt ├── statics ├── AesCbc.html ├── AesCbcForm.html ├── AesCbcFormData.html ├── AesCbcQuery.html ├── AesEcb.html ├── AesGcm.html ├── AesRsa.html ├── Des3Cbc.html ├── DesCbc.html ├── DynamicKey.html ├── Index.html ├── Rsa.html ├── Sm2.html ├── Sm2Sm4.html └── Sm4Cbc.html └── user.db /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/README.md -------------------------------------------------------------------------------- /ciphers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/__init__.py -------------------------------------------------------------------------------- /ciphers/aes_cbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/aes_cbc.py -------------------------------------------------------------------------------- /ciphers/aes_ecb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/aes_ecb.py -------------------------------------------------------------------------------- /ciphers/aes_gcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/aes_gcm.py -------------------------------------------------------------------------------- /ciphers/aes_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/aes_rsa.py -------------------------------------------------------------------------------- /ciphers/des.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/des.py -------------------------------------------------------------------------------- /ciphers/des3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/des3.py -------------------------------------------------------------------------------- /ciphers/dynamic_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/dynamic_key.py -------------------------------------------------------------------------------- /ciphers/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/rsa.py -------------------------------------------------------------------------------- /ciphers/sm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/sm2.py -------------------------------------------------------------------------------- /ciphers/sm2_sm4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/sm2_sm4.py -------------------------------------------------------------------------------- /ciphers/sm4_cbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/ciphers/sm4_cbc.py -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/manager.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | pycryptodome 3 | gmssl 4 | jinja2 5 | uvicorn 6 | sqlalchemy -------------------------------------------------------------------------------- /statics/AesCbc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/AesCbc.html -------------------------------------------------------------------------------- /statics/AesCbcForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/AesCbcForm.html -------------------------------------------------------------------------------- /statics/AesCbcFormData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/AesCbcFormData.html -------------------------------------------------------------------------------- /statics/AesCbcQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/AesCbcQuery.html -------------------------------------------------------------------------------- /statics/AesEcb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/AesEcb.html -------------------------------------------------------------------------------- /statics/AesGcm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/AesGcm.html -------------------------------------------------------------------------------- /statics/AesRsa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/AesRsa.html -------------------------------------------------------------------------------- /statics/Des3Cbc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/Des3Cbc.html -------------------------------------------------------------------------------- /statics/DesCbc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/DesCbc.html -------------------------------------------------------------------------------- /statics/DynamicKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/DynamicKey.html -------------------------------------------------------------------------------- /statics/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/Index.html -------------------------------------------------------------------------------- /statics/Rsa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/Rsa.html -------------------------------------------------------------------------------- /statics/Sm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/Sm2.html -------------------------------------------------------------------------------- /statics/Sm2Sm4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/Sm2Sm4.html -------------------------------------------------------------------------------- /statics/Sm4Cbc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/statics/Sm4Cbc.html -------------------------------------------------------------------------------- /user.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outlaws-bai/GalaxyDemo/HEAD/user.db --------------------------------------------------------------------------------