nostr-gem/sig/vendor/schnorr.rbs
Wilson Silva 01010c763f
Allow the verification of signatures and events
Added the methods:
- Event#verify_signature
- Crypto#check_sig!
- Crypto#valid_sig?
- Crypto#sign_message

Fixed a primitive obsession by introducing a Signature class to ensure that signatures are valid Nostr signatures.
2024-03-15 19:13:33 +00:00

7 lines
341 B
Plaintext

# Added only to satisfy the Steep requirements. Not 100% reliable.
module Schnorr
def self.sign: (String message, String private_key, ?String aux_rand) -> Signature
def self.valid_sig?: (String message, String public_key, String signature) -> bool
def self.check_sig!: (String message, String public_key, String signature) -> bool
end