Skip to content

Commit

Permalink
one
Browse files Browse the repository at this point in the history
  • Loading branch information
wistefan committed Jan 10, 2025
1 parent b35f481 commit 1cb8347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verifier/elsi_proof_checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (epc ElsiProofChecker) checkElsiProof(headers jose.Headers, expectedProofIs
return err
}

encodedMessage, _ := decodeBase64BytesToString(msg)
encodedMessage := string(msg[:])
logging.Log().Warnf("Encoded message %s", encodedMessage)
encodedSignature := base64.RawURLEncoding.EncodeToString(signature)
originalJwt := encodedMessage + "." + encodedSignature
Expand Down

0 comments on commit 1cb8347

Please sign in to comment.