mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 22:25:27 +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
|