├── .github └── workflows │ └── pythonapp.yml ├── .gitignore ├── Jenkinsfile ├── README.md ├── __init__.py ├── app ├── app.py └── scripts │ ├── install.bat │ └── uninstall.bat ├── main.py ├── myContrib ├── signer.py ├── symbols.py └── test ├── images ├── java.png └── python.png ├── sample ├── sample.R ├── sample.java └── sample.py └── test.py /.github/workflows/pythonapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/.github/workflows/pythonapp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__* 2 | *.pyc -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/app/app.py -------------------------------------------------------------------------------- /app/scripts/install.bat: -------------------------------------------------------------------------------- 1 | REG ADD "HKCR\Directory\Background\Shell\Sign here\command" /d "%1 %2 %3\signer.exe" 2 | -------------------------------------------------------------------------------- /app/scripts/uninstall.bat: -------------------------------------------------------------------------------- 1 | REG DELETE "HKCR\Directory\Background\Shell\Sign here" /f -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/main.py -------------------------------------------------------------------------------- /myContrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/myContrib -------------------------------------------------------------------------------- /signer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/signer.py -------------------------------------------------------------------------------- /symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/symbols.py -------------------------------------------------------------------------------- /test/images/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/test/images/java.png -------------------------------------------------------------------------------- /test/images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/test/images/python.png -------------------------------------------------------------------------------- /test/sample/sample.R: -------------------------------------------------------------------------------- 1 | class(sample): 2 | pass 3 | -------------------------------------------------------------------------------- /test/sample/sample.java: -------------------------------------------------------------------------------- 1 | class sample { 2 | 3 | } -------------------------------------------------------------------------------- /test/sample/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/test/sample/sample.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harjacober/FileSigner/HEAD/test/test.py --------------------------------------------------------------------------------