package tezos-signer-backends

  1. Overview
  2. Docs
Tezos: remote-signature backends for `tezos-client`

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-16.0.tar.gz
sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b

doc/tezos-signer-backends.unix/Tezos_signer_backends_unix/Socket/Make/Unix/index.html

Module Make.UnixSource

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
Sourcetype public_key_hash = Tezos_crypto.Signature.Public_key_hash.t
Sourcetype public_key = Tezos_crypto.Signature.Public_key.t
Sourcetype secret_key = Tezos_crypto.Signature.Secret_key.t
Sourcetype signature = Tezos_crypto.Signature.t
Sourceval scheme : string

scheme is the name of the scheme implemented by this signer module.

Sourceval title : string

title is a one-line human readable description of the signer.

Sourceval description : string

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.

import_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.

public_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.

Sourceval sign : ?watermark:Tezos_crypto.Signature.watermark -> sk_uri -> Tezos_base.TzPervasives.Bytes.t -> signature Tezos_base.TzPervasives.tzresult Lwt.t

sign ?watermark sk data is signature obtained by signing data with sk.

deterministic_nonce sk data is a nonce obtained deterministically from data and sk.

deterministic_nonce_hash sk data is a nonce hash obtained deterministically from data and sk.

Sourceval supports_deterministic_nonces : sk_uri -> bool Tezos_base.TzPervasives.tzresult Lwt.t

supports_deterministic_nonces indicates whether the deterministic_nonce functionality is supported.

OCaml

Innovation. Community. Security.