1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-25 00:47:17 +02:00

Merge branch 'master' into banner-flag

This commit is contained in:
Henry Jenkins
2019-07-02 14:03:21 +01:00
committed by GitHub
12 changed files with 76 additions and 56 deletions

View File

@ -455,7 +455,7 @@ func parseSignatureKey(o *Options, msgs []string) []string {
return append(msgs, "unsupported signature hash algorithm: "+
o.SignatureKey)
}
o.signatureData = &SignatureData{hash, secretKey}
o.signatureData = &SignatureData{hash: hash, key: secretKey}
return msgs
}