Lines Matching refs:GTHashAlgorithm
55 class GTHashAlgorithm { class
126 * @return GTHashAlgorithm hash algorithm object with the given name.
138 return GTHashAlgorithm::getByName('SHA256');
141 foreach (GTHashAlgorithm::getSupportedAlgorithms() as $algorithm) {
157 * @return GTHashAlgorithm hash algorithm object with the given OID.
165 foreach (GTHashAlgorithm::getSupportedAlgorithms() as $algorithm) {
181 * @return GTHashAlgorithm hash algorithm object with the given GTID.
189 foreach (GTHashAlgorithm::getSupportedAlgorithms() as $algorithm) {
208 new GTHashAlgorithm("RIPEMD160", "1.3.36.3.2.1", 2, 20),
209 new GTHashAlgorithm("SHA1", "1.3.14.3.2.26", 0, 20),
210 new GTHashAlgorithm("SHA224", "2.16.840.1.101.3.4.2.4", 3, 28),
211 new GTHashAlgorithm("SHA256", "2.16.840.1.101.3.4.2.1", 1, 32),
212 new GTHashAlgorithm("SHA384", "2.16.840.1.101.3.4.2.2", 4, 48),
213 new GTHashAlgorithm("SHA512", "2.16.840.1.101.3.4.2.3", 5, 64)