2016-11-03 22:15:31 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
(** Tezos - X25519/XSalsa20-Poly1305 cryptography *)
|
|
|
|
|
|
|
|
type secret_key
|
|
|
|
type public_key
|
|
|
|
type nonce
|
|
|
|
|
|
|
|
val random_keypair : unit -> secret_key * public_key
|
|
|
|
val random_nonce : unit -> nonce
|
|
|
|
val increment_nonce : ?step:int -> nonce -> nonce
|
|
|
|
val box : secret_key -> public_key -> MBytes.t -> nonce -> MBytes.t
|
|
|
|
val box_open : secret_key -> public_key -> MBytes.t -> nonce -> MBytes.t
|
2016-11-04 23:07:03 +04:00
|
|
|
val to_public_key : MBytes.t -> public_key
|
|
|
|
val of_public_key : public_key -> MBytes.t
|