Home | History | Annotate | Download | only in runner

Lines Matching refs:mac

74 // A cipherSuite is a specific combination of key agreement, cipher and MAC
86 mac func(version uint16, macKey []byte) macFunction
179 mac := ssl30MAC{
183 copy(mac.key, key)
184 return mac
191 mac := ssl30MAC{
195 copy(mac.key, key)
196 return mac
203 mac := ssl30MAC{
207 copy(mac.key, key)
208 return mac
215 mac := ssl30MAC{
219 copy(mac.key, key)
220 return mac
227 MAC(digestBuf, seq, header, length, data []byte) []byte
320 // ssl30MAC implements the SSLv3 MAC function, as defined in
335 func (s ssl30MAC) MAC(digestBuf, seq, header, length, data []byte) []byte {
357 // tls10MAC implements the TLS 1.0 MAC function. RFC 2246, section 6.2.3.
366 func (s tls10MAC) MAC(digestBuf, seq, header, length, data []byte) []byte {