1// keys package contains the public key for verifying digital signature of templates 2package keys 3 4import _ "embed" 5 6const PDVerifier = "projectdiscovery/nuclei-templates" 7 8//go:embed nuclei.crt 9var NucleiCert []byte // public key for verifying digital signature of templates 10 11