fix: code challenge

This commit is contained in:
Livio Amstutz 2020-02-28 18:07:01 +01:00
parent 7f486a54c4
commit c3169868d8
3 changed files with 8 additions and 4 deletions

View file

@ -185,7 +185,7 @@ func ClaimHash(claim string, sigAlgorithm jose.SignatureAlgorithm) (string, erro
return "", err
}
return utils.HashString(hash, claim), nil
return utils.HashString(hash, claim, true), nil
}
func timeToJSON(t time.Time) int64 {