forked from TrueCloudLab/certificates
Fix small typo in divisible
This commit is contained in:
parent
54610e890b
commit
a3ec890e71
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ func (s *SCEP) Init(config Config) (err error) {
|
|||
}
|
||||
|
||||
if s.MinimumPublicKeyLength%8 != 0 {
|
||||
return errors.Errorf("only minimum public keys exactly divisible by 8 are supported; %d is not exactly divisibly by 8", s.MinimumPublicKeyLength)
|
||||
return errors.Errorf("only minimum public keys exactly divisible by 8 are supported; %d is not exactly divisible by 8", s.MinimumPublicKeyLength)
|
||||
}
|
||||
|
||||
// TODO: add other, SCEP specific, options?
|
||||
|
|
Loading…
Reference in a new issue