Skip to content
This repository was archived by the owner on Oct 17, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: ECDSA Verification
description:
Learn about the cryptographic primitives regarding ECDSA over the secp256k1 curve
keywords:
[
cryptographic primitives,
Noir project,
ecdsa,
secp256k1,
signatures,
]
---

## ecdsa_secp256k1::verify_signature

Verifier for ECDSA Secp256k1 signatures

```rust
fn verify_signature(_public_key_x : [u8; 32], _public_key_y : [u8; 32], _signature: [u8; 64], _message: [u8]) -> Field
```