simfony_as_rust/jet/
digital_signatures.rs

1/* This file has been automatically generated. */
2
3//! # Digital signatures
4//!
5//! This module defines jets for verifying digital signatures.
6
7#![allow(unused)]
8#![allow(clippy::complexity)]
9
10use super::*;
11
12/// Assert that a Schnorr signature matches a public key and message.
13///
14/// ## Panics
15/// The assertion fails.
16///
17/// ## Cost
18///
19/// 49087 mWU _(milli weight units)_
20pub fn bip_0340_verify(a: (Pubkey, Message), b: Signature) {
21    todo!()
22}