1
2
3
4
5
6
7
8
9
10
11
12
13
#pike __REAL_VERSION__
#pragma strict_types
#require constant(Nettle.GOST94)
//! The GOST94 or GOST R 34.11-94 hash algorithm is a Soviet-era
//! algorithm used in Russian government standards, defined in
//! @rfc{4357@}.
inherit Nettle.GOST94;
string name() { return "gost94"; }