https://gitlab.com/tezos/tezos
Raw File
Tip revision: 2f45b07b867d29e0a6e1de9cbfa09714cee029c3 authored by Thomas Letan on 05 March 2024, 14:45:45 UTC
fixup: Register L2 level instead
Tip revision: 2f45b07
client_proto_utils.mli
(*****************************************************************************)
(*                                                                           *)
(* Open Source License                                                       *)
(* Copyright (c) 2020 Metastate AG <hello@metastate.ch>                      *)
(*                                                                           *)
(* Permission is hereby granted, free of charge, to any person obtaining a   *)
(* copy of this software and associated documentation files (the "Software"),*)
(* to deal in the Software without restriction, including without limitation *)
(* the rights to use, copy, modify, merge, publish, distribute, sublicense,  *)
(* and/or sell copies of the Software, and to permit persons to whom the     *)
(* Software is furnished to do so, subject to the following conditions:      *)
(*                                                                           *)
(* The above copyright notice and this permission notice shall be included   *)
(* in all copies or substantial portions of the Software.                    *)
(*                                                                           *)
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  *)
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL   *)
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING   *)
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER       *)
(* DEALINGS IN THE SOFTWARE.                                                 *)
(*                                                                           *)
(*****************************************************************************)

val sign_message :
  #Protocol_client_context.full ->
  src_sk:Client_keys_v0.sk_uri ->
  block:Block_hash.t ->
  message:string ->
  Tezos_crypto.Signature.V0.t tzresult Lwt.t

val check_message :
  #Protocol_client_context.full ->
  block:Block_hash.t ->
  key_locator:Client_keys_v0.pk_uri ->
  quiet:bool ->
  message:string ->
  signature:Tezos_crypto.Signature.V0.t ->
  bool tzresult Lwt.t
back to top