8000 GitHub - fmuecke/SignFiles: Powershell script to sign code - including timestamps
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fmuecke/SignFiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

SignFiles

Powershell script to sign code - including timestamps

What problems does it solve?

  • simple to use
  • signs multiple files at once
  • signs files in subdirectories as well
  • does not overwrite existing signatures
  • (more) robust timestamping with different timeservers

I need a code signing certificate!

You need to buy one. Or you can create one with powershell (Windows 10) for testing purposes

New-SelfSignedCertificate -CertStoreLocation cert:\currentuser\my `
  -Subject "CN=Test Code Signing" `
  -KeyAlgorithm RSA `
  -KeyLength 2048 `
  -Provider "Microsoft Enhanced RSA and AES Cryptographic Provider" `
  -KeyExportPolicy Exportable `
  -KeyUsage DigitalSignature `
  -Type CodeSigningCert

see Stackoverflow Question

About

Powershell script to sign code - including timestamps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0