mirror of
https://github.com/docker/docs.git
synced 2026-04-12 14:25:46 +07:00
12 lines
286 B
Go
12 lines
286 B
Go
package notary
|
|
|
|
// application wide constants
|
|
const (
|
|
// Require a minimum of one threshold for roles, currently we do not support a higher threshold
|
|
MinThreshold = 1
|
|
PrivKeyPerms = 0700
|
|
PubCertPerms = 0755
|
|
Sha256HexSize = 64
|
|
TrustedCertsDir = "trusted_certificates"
|
|
)
|