├── README.md ├── cslv.py └── pkg ├── Crypto ├── LSI │ ├── __init__.py │ ├── curves.py │ ├── ecc.py │ ├── ecdsa.py │ └── libs.py ├── PKCS11 │ └── __init__.py ├── PyCrypto │ ├── __init__.py │ ├── hash.py │ └── publickey_cipher.py ├── __init__.py └── engines.py ├── File ├── Structure │ ├── __init__.py │ ├── interface.py │ ├── privatekey.py │ ├── publickey.py │ ├── signature.py │ ├── stage1_stuff.py │ └── stage2_stuff.py ├── __init__.py ├── boot_loader.py ├── privatekey.py └── publickey.py ├── __init__.py ├── diet_app.py ├── diet_stage.py ├── optparseex.py ├── settings.py └── testkeys.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/README.md -------------------------------------------------------------------------------- /cslv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/cslv.py -------------------------------------------------------------------------------- /pkg/Crypto/LSI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/LSI/__init__.py -------------------------------------------------------------------------------- /pkg/Crypto/LSI/curves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/LSI/curves.py -------------------------------------------------------------------------------- /pkg/Crypto/LSI/ecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/LSI/ecc.py -------------------------------------------------------------------------------- /pkg/Crypto/LSI/ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/LSI/ecdsa.py -------------------------------------------------------------------------------- /pkg/Crypto/LSI/libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/LSI/libs.py -------------------------------------------------------------------------------- /pkg/Crypto/PKCS11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/PKCS11/__init__.py -------------------------------------------------------------------------------- /pkg/Crypto/PyCrypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/PyCrypto/__init__.py -------------------------------------------------------------------------------- /pkg/Crypto/PyCrypto/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/PyCrypto/hash.py -------------------------------------------------------------------------------- /pkg/Crypto/PyCrypto/publickey_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/PyCrypto/publickey_cipher.py -------------------------------------------------------------------------------- /pkg/Crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/__init__.py -------------------------------------------------------------------------------- /pkg/Crypto/engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/Crypto/engines.py -------------------------------------------------------------------------------- /pkg/File/Structure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/Structure/__init__.py -------------------------------------------------------------------------------- /pkg/File/Structure/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/Structure/interface.py -------------------------------------------------------------------------------- /pkg/File/Structure/privatekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/Structure/privatekey.py -------------------------------------------------------------------------------- /pkg/File/Structure/publickey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/Structure/publickey.py -------------------------------------------------------------------------------- /pkg/File/Structure/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/Structure/signature.py -------------------------------------------------------------------------------- /pkg/File/Structure/stage1_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/Structure/stage1_stuff.py -------------------------------------------------------------------------------- /pkg/File/Structure/stage2_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/Structure/stage2_stuff.py -------------------------------------------------------------------------------- /pkg/File/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/__init__.py -------------------------------------------------------------------------------- /pkg/File/boot_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/boot_loader.py -------------------------------------------------------------------------------- /pkg/File/privatekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/privatekey.py -------------------------------------------------------------------------------- /pkg/File/publickey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/File/publickey.py -------------------------------------------------------------------------------- /pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/__init__.py -------------------------------------------------------------------------------- /pkg/diet_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/diet_app.py -------------------------------------------------------------------------------- /pkg/diet_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/diet_stage.py -------------------------------------------------------------------------------- /pkg/optparseex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/optparseex.py -------------------------------------------------------------------------------- /pkg/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/settings.py -------------------------------------------------------------------------------- /pkg/testkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CruelKernel/CodeSigner/HEAD/pkg/testkeys.py --------------------------------------------------------------------------------