Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
certificate_repr.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2023 TriliTech, <contact@trili.tech> *) (* Copyright (c) 2023 Marigold, <contact@marigold.dev> *) (* *) (* 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. *) (* *) (*****************************************************************************) (* TODO: https://gitlab.com/tezos/tezos/-/issues/5073 Update Certificate repr to handle a dynamic dac. *) module V0 = struct (** Current version of the [Certificate] must be equal to the version of the module, 0 in this case. *) let version = 0 (** Representation of a Data Availibility Committee Certificate. Type is private to make sure correct [version] is used. Use [make] function to create a [Certificate_repr.V0.t] *) type t = { root_hash : Dac_plugin.raw_hash; aggregate_signature : Tezos_crypto.Aggregate_signature.signature; witnesses : Z.t; (* TODO: https://gitlab.com/tezos/tezos/-/issues/4853 Use BitSet for witnesses field in external message *) } let make root_hash aggregate_signature witnesses = {root_hash; aggregate_signature; witnesses} let encoding = let obj_enc = Data_encoding.( obj4 (req "version" Data_encoding.uint8) (req "root_hash" Dac_plugin.raw_hash_encoding) (req "aggregate_signature" Tezos_crypto.Aggregate_signature.encoding) (req "witnesses" z)) in Data_encoding.( conv_with_guard (fun {root_hash; aggregate_signature; witnesses} -> (0, root_hash, aggregate_signature, witnesses)) (fun (version, root_hash, aggregate_signature, witnesses) -> if version == 0 then Ok {root_hash; aggregate_signature; witnesses} else Error "invalid version of certificate.") obj_enc) let all_committee_members_have_signed committee_members {witnesses; _} = let length = List.length committee_members in (* TODO: https://gitlab.com/tezos/tezos/-/issues/4562 The following is equivalent to Bitset.fill length. The Bitset module should be used once it is moved from the protocol to the environment. *) let expected_witnesses = Z.(pred (shift_left one length)) in (* Equivalent to Bitset.diff expected_witnesses witnesses. *) let missing_witnesses = Z.logand expected_witnesses (Z.lognot witnesses) in Z.(equal missing_witnesses zero) module Protocol_dependant = struct (** Very similar to V0.t but using a [root_hash] related to the active protocol. *) type t = { root_hash : Dac_plugin.hash; aggregate_signature : Tezos_crypto.Aggregate_signature.signature; witnesses : Z.t; } (** This encoding is protocol dependant. It should not be on DAC side, but this is the easiest/faster way to handle it. *) let certificate_client_encoding root_hash_encoding = let untagged = Data_encoding.( conv (fun {root_hash; aggregate_signature; witnesses} -> (root_hash, aggregate_signature, witnesses)) (fun (root_hash, aggregate_signature, witnesses) -> {root_hash; aggregate_signature; witnesses}) (obj3 (req "root_hash" root_hash_encoding) (req "aggregate_signature" Tezos_crypto.Aggregate_signature.encoding) (req "witnesses" z))) in Data_encoding.( union ~tag_size:`Uint8 [ case ~title:"certificate_V0" (Tag version) untagged (fun certificate -> Some certificate) (fun certificate -> certificate); ]) let serialize_certificate root_hash_encoding ~root_hash ~aggregate_signature ~witnesses = let bytes_as_result = Data_encoding.Binary.to_bytes (certificate_client_encoding root_hash_encoding) {root_hash; aggregate_signature; witnesses} in match bytes_as_result with | Ok serialized_certificate -> serialized_certificate | Error _ -> Stdlib.failwith "Error while serializing the certificate" end end type t = V0 of V0.t let encoding = let open Data_encoding in union [ case ~title:"certificate_repr_V0" (Tag 0) V0.encoding (function V0 s -> Some s) (fun s -> V0 s); ] let get_root_hash t = match t with V0 t -> t.root_hash let get_aggregate_signature t = match t with V0 t -> t.aggregate_signature let get_witnesses t = match t with V0 t -> t.witnesses let get_version t = match t with V0 _t -> V0.version let all_committee_members_have_signed committee_members certificate = match certificate with | V0 certificate -> V0.all_committee_members_have_signed committee_members certificate