Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mistermoe authored and frankhinek committed Nov 2, 2023
1 parent f251d5d commit b4820ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/crypto/src/crypto-primitives/secp256k1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ export class Secp256k1 {
const digest = hashFunction(data);

// Verify operation with malleability check disabled. Guaranteed support for low-s
// signatures across languages is unlikely especially in the context of SSI.
// Notable Cloud KMS providers do not natively support it either.
// signatures across languages is unlikely especially in the context of SSI.
// Notable Cloud KMS providers do not natively support it either.
// low-s signatures are a requirement for Bitcoin
const isValid = secp256k1.verify(signature, digest, key, { lowS: false });

Expand Down

0 comments on commit b4820ef

Please sign in to comment.