Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #181 from noir-lang/zepedro/eddsa_verification
Browse files Browse the repository at this point in the history
adding eddsa sig verification
  • Loading branch information
signorecello authored Jun 5, 2023
2 parents c82d496 + 0d72005 commit 48916c8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/standard_library/cryptographic_primitives/05_eddsa.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: EdDSA Verification
description: Learn about the cryptographic primitives regarding EdDSA
keywords: [cryptographic primitives, Noir project, eddsa, signatures]
---

import BlackBoxInfo from './common/_blackbox.mdx';

## eddsa::eddsa_poseidon_verify

Verifier for EdDSA signatures

```rust
fn eddsa_poseidon_verify(public_key_x : Field, public_key_y : Field, signature_s: Field, signature_r8_x: Field, signature_r8_y: Field, message: Field) -> bool
```

<BlackBoxInfo />

0 comments on commit 48916c8

Please sign in to comment.