diff --git a/packages/crypto/src/crypto-primitives/secp256k1.ts b/packages/crypto/src/crypto-primitives/secp256k1.ts index 66c75294b..a958210bb 100644 --- a/packages/crypto/src/crypto-primitives/secp256k1.ts +++ b/packages/crypto/src/crypto-primitives/secp256k1.ts @@ -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 });