mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 18:05:27 +00:00
10 lines
276 B
Go
10 lines
276 B
Go
// keys package contains the public key for verifying digital signature of templates
|
|
package keys
|
|
|
|
import _ "embed"
|
|
|
|
const PDVerifier = "projectdiscovery/nuclei-templates"
|
|
|
|
//go:embed nuclei.crt
|
|
var NucleiCert []byte // public key for verifying digital signature of templates
|