mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-19 21:55:26 +00:00
8 lines
220 B
Go
8 lines
220 B
Go
|
|
// keys package contains the public key for verifying digital signature of templates
|
||
|
|
package keys
|
||
|
|
|
||
|
|
import _ "embed"
|
||
|
|
|
||
|
|
//go:embed nuclei.crt
|
||
|
|
var NucleiCert []byte // public key for verifying digital signature of templates
|