Lines Matching refs:hmac

1561                         ['hmac-sha1-96', 'hmac-md5-96']
1567 ['hmac-sha1-96', 'hmac-md5-96']
2169 case 'hmac-sha2-512':
2170 case 'hmac-sha2-512-etm@openssh.com':
2172 case 'hmac-sha2-256':
2173 case 'hmac-sha2-256-etm@openssh.com':
2175 case 'hmac-sha1':
2176 case 'hmac-sha1-etm@openssh.com':
2178 case 'hmac-sha1-96':
2180 case 'hmac-md5':
2182 case 'hmac-md5-96':
3677 $hmac = stream_get_contents($this->fsock, $this->hmac_size);
3678 if ($hmac === false || strlen($hmac) != $this->hmac_size) {
3688 if ($hmac != $this->hmac_check->hash($reconstructed)) {
3693 if ($hmac != $this->hmac_check->hash(pack('Na*', $this->get_seq_no, $reconstructed))) {
4329 $hmac = '';
4333 $hmac = $this->hmac_create->hash($packet);
4335 $hmac = $this->hmac_create->hash(pack('Na*', $this->send_seq_no, $packet));
4385 $hmac = $this->hmac_create->hash($packet);
4387 $hmac = $this->hmac_create->hash(pack('Na*', $this->send_seq_no, $packet));
4393 $packet .= $this->encrypt && $this->encrypt->usesNonce() ? $this->encrypt->getTag() : $hmac;
4995 'hmac-sha2-256-etm@openssh.com',
4996 'hmac-sha2-512-etm@openssh.com',
4999 'hmac-sha1-etm@openssh.com',
5002 'hmac-sha2-256',// RECOMMENDED HMAC-SHA256 (digest length = key length = 32)
5003 'hmac-sha2-512',// OPTIONAL HMAC-SHA512 (digest length = key length = 64)
5009 'hmac-sha1-96', // RECOMMENDED first 96 bits of HMAC-SHA1 (digest length = 12, key length = 20)
5010 'hmac-sha1', // REQUIRED HMAC-SHA1 (digest length = key length = 20)
5011 'hmac-md5-96', // OPTIONAL first 96 bits of HMAC-MD5 (digest length = 12, key length = 16)
5012 'hmac-md5', // OPTIONAL HMAC-MD5 (digest length = key length = 16)