├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── hsmwiz.py ├── hsmwiz ├── ActionChangePIN.py ├── ActionCheckEngine.py ├── ActionExplore.py ├── ActionFormat.py ├── ActionGenCSR.py ├── ActionGetPublicKey.py ├── ActionIdentify.py ├── ActionInit.py ├── ActionKeyGen.py ├── ActionPutCRT.py ├── ActionRemoveKey.py ├── ActionUnblock.py ├── ActionVerifyPIN.py ├── BaseAction.py ├── CmdTools.py ├── FriendlyArgumentParser.py ├── HardwareSecurityModule.py ├── MultiCommand.py ├── PrefixMatcher.py ├── __init__.py └── __main__.py └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | __pycache__ 3 | dist 4 | hsmwiz.egg-info 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/README.md -------------------------------------------------------------------------------- /hsmwiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz.py -------------------------------------------------------------------------------- /hsmwiz/ActionChangePIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionChangePIN.py -------------------------------------------------------------------------------- /hsmwiz/ActionCheckEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionCheckEngine.py -------------------------------------------------------------------------------- /hsmwiz/ActionExplore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionExplore.py -------------------------------------------------------------------------------- /hsmwiz/ActionFormat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionFormat.py -------------------------------------------------------------------------------- /hsmwiz/ActionGenCSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionGenCSR.py -------------------------------------------------------------------------------- /hsmwiz/ActionGetPublicKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionGetPublicKey.py -------------------------------------------------------------------------------- /hsmwiz/ActionIdentify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionIdentify.py -------------------------------------------------------------------------------- /hsmwiz/ActionInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionInit.py -------------------------------------------------------------------------------- /hsmwiz/ActionKeyGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionKeyGen.py -------------------------------------------------------------------------------- /hsmwiz/ActionPutCRT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionPutCRT.py -------------------------------------------------------------------------------- /hsmwiz/ActionRemoveKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionRemoveKey.py -------------------------------------------------------------------------------- /hsmwiz/ActionUnblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionUnblock.py -------------------------------------------------------------------------------- /hsmwiz/ActionVerifyPIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/ActionVerifyPIN.py -------------------------------------------------------------------------------- /hsmwiz/BaseAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/BaseAction.py -------------------------------------------------------------------------------- /hsmwiz/CmdTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/CmdTools.py -------------------------------------------------------------------------------- /hsmwiz/FriendlyArgumentParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/FriendlyArgumentParser.py -------------------------------------------------------------------------------- /hsmwiz/HardwareSecurityModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/HardwareSecurityModule.py -------------------------------------------------------------------------------- /hsmwiz/MultiCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/MultiCommand.py -------------------------------------------------------------------------------- /hsmwiz/PrefixMatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/PrefixMatcher.py -------------------------------------------------------------------------------- /hsmwiz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/__init__.py -------------------------------------------------------------------------------- /hsmwiz/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/hsmwiz/__main__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/hsmwiz/HEAD/setup.py --------------------------------------------------------------------------------