val algorithm_to_int : algorithm -> int
algorithm_to_int a
is the 8 bit integer representation of algorithm a
.
val int_to_algorithm : int -> algorithm
int_to_algorithm i
decodes i
to the algorithm constructor.
- raises Invalid_argument
if
i
does not fit in one octet.
val typ_to_int : typ -> int
typ_to_int t
is the 8 bit integer representation of typ t
.
val int_to_typ : int -> typ
int_to_typ i
decodes i
to the typ constructor.
- raises Invalid_argument
if
i
does not fit in one octet.
The type of a SSH fingerprint record, consisting of algorithm, typ, and actual fingerprint.