Library
Module
Module type
Parameter
Class
Class type
States and types
type ret = [
| `Warning of string
| `Received_error of string
| `Received of string
| `Established_encrypted_session of string
| `Received_encrypted of string
| `SMP_awaiting_secret
| `SMP_received_question of string
| `SMP_success
| `SMP_failure
]
Return values of functions in the Engine
module.
val sexp_of_policy : policy -> Sexplib.Sexp.t
val policy_of_sexp : Sexplib.Sexp.t -> policy
val policy_to_string : policy -> string
policy_to_string policy
is string
, the string representation of the given policy
.
val string_to_policy : string -> policy option
string_to_policy string
is policy
, the policy
matching the string (None
if none matches).
val all_policies : policy list
all_policies
returns a list of all defined policies.
val sexp_of_version : version -> Sexplib.Sexp.t
val version_of_sexp : Sexplib.Sexp.t -> version
val version_to_string : version -> string
version_to_string version
is string
, the string representation of the version
.
val string_to_version : string -> version option
string_to_version string
is version
, the version
matching the string (None
if none matches).
val all_versions : version list
all_versions
returns a list of all supported versions.
OTR configuration consisting of a set of policies and versions.
val sexp_of_config : config -> Sexplib.Sexp.t
val config_of_sexp : Sexplib.Sexp.t -> config
config versions policies
is config
, the configuration with the given versions
and policies
.
val session_to_string : session -> string
session_to_string session
is string
, the string representation of the session
.
version session
is version
, the current active protocol version of this session
.
val is_encrypted : session -> bool
is_encrypted session
is true
if the session is established.
val their_dsa : session -> Nocrypto.Dsa.pub option
their_dsa session
is dsa
, the public DSA key used by the communication partner (if the session is established).
val new_session : config -> Nocrypto.Dsa.priv -> unit -> session
new_session configuration dsa ()
is session
, a fresh session given the configuration
and dsa
private key.