Skip to content

Commit

Permalink
fix default signer key type
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Guthe committed May 12, 2018
1 parent bb5ac3e commit 69e95cb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions algorithms.go
Expand Up @@ -12,6 +12,9 @@ import (
// which type of crypto.PrivateKey to generate
type KeyType int
const (
// KeyTypeUnsupported is the type to not generate a key
KeyTypeUnsupported KeyType = iota

// KeyTypeRSA is the type to generate an rsa.PrivateKey
KeyTypeRSA KeyType = iota

Expand Down

0 comments on commit 69e95cb

Please sign in to comment.