Skip to content

Commit

Permalink
Fix small typo in divisible
Browse files Browse the repository at this point in the history
  • Loading branch information
hslatman committed May 6, 2021
1 parent 54610e8 commit a3ec890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authority/provisioner/scep.go
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit a3ec890

Please sign in to comment.