Files
docker-docs/const.go
David Lawrence e8d2240c79 write private key to a backup dir when creating keys on yubikey
Signed-off-by: David Lawrence <david.lawrence@docker.com> (github: endophage)
2015-11-12 01:09:31 -08:00

10 lines
149 B
Go

package notary
// application wide constants
const (
BackupDir = "backup"
PrivDir = "private"
PrivKeyPerms = 0700
PubCertPerms = 0755
)