package tezos-signer-backends
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
sha256=43723d096307603703a1a89ed1b2eb202b365f5e7824b96b0cbf813b343a6cf7
    
    
  sha512=b2a637f2e965000d3d49ad85277ca24d6cb07a1a7cf2bc69d296d8b03ad78c3eaa8e21e94b9162e62c2e11649cd03bc845b2a3dafe623b91065df69d47dc8e4f
    
    
  doc/tezos-signer-backends.unix/Tezos_signer_backends_unix/Ledger/Signer_implementation/index.html
Module Ledger.Signer_implementationSource
include Tezos_client_base.Client_keys.COMMON_SIGNER
  with type public_key_hash = Tezos_crypto.Signature.Public_key_hash.t
   and type public_key = Tezos_crypto.Signature.Public_key.t
   and type secret_key = Tezos_crypto.Signature.Secret_key.t
   and type signature = Tezos_crypto.Signature.t
   and type pk_uri = Tezos_client_base.Client_keys.pk_uri
   and type sk_uri = Tezos_client_base.Client_keys.sk_uri
scheme is the name of the scheme implemented by this signer module.
title is a one-line human readable description of the signer.
description is a multi-line human readable description of the signer, that should include the format of key specifications.
neuterize sk is the corresponding pk.
val import_secret_key : 
  io:Tezos_client_base.Client_context.io_wallet ->
  pk_uri ->
  (public_key_hash * public_key option) Tezos_base.TzPervasives.tzresult Lwt.timport_secret_key ~io pk is the function to be called when interactively importing a key-pair and returning the public key and its hash.
Some signer implementations improve long-term security by requiring human/manual validation while importing keys, the ~io argument can be used to prompt the user in such case.
public_key pk is the Ed25519 version of pk.
val public_key_hash : 
  pk_uri ->
  (public_key_hash * public_key option) Tezos_base.TzPervasives.tzresult Lwt.tpublic_key_hash pk is the hash of pk. As some signers will query the full public key to obtain the hash, it can be optionally returned to reduce the amount of queries.
val sign : 
  ?watermark:Tezos_crypto.Signature.watermark ->
  sk_uri ->
  Tezos_base.TzPervasives.Bytes.t ->
  signature Tezos_base.TzPervasives.tzresult Lwt.tsign ?watermark sk data is signature obtained by signing data with sk.
val deterministic_nonce : 
  sk_uri ->
  Tezos_base.TzPervasives.Bytes.t ->
  Tezos_base.TzPervasives.Bytes.t Tezos_base.TzPervasives.tzresult Lwt.tdeterministic_nonce sk data is a nonce obtained deterministically from data and sk.
val deterministic_nonce_hash : 
  sk_uri ->
  Tezos_base.TzPervasives.Bytes.t ->
  Tezos_base.TzPervasives.Bytes.t Tezos_base.TzPervasives.tzresult Lwt.tdeterministic_nonce_hash sk data is a nonce hash obtained deterministically from data and sk.
supports_deterministic_nonces indicates whether the deterministic_nonce functionality is supported.