Module Pk.Message

type t = {
ephemeral_key : string;
mac : string;
ciphertext : string;
}
val create : string -> string -> string -> t

create ephemeral_key mac ciphertext

Create a new PK encrypted message, simply filling in the record t.