()
| 1156 | } |
| 1157 | |
| 1158 | func (c *Config) time() time.Time { |
| 1159 | t := c.Time |
| 1160 | if t == nil { |
| 1161 | t = time.Now |
| 1162 | } |
| 1163 | return t() |
| 1164 | } |
| 1165 | |
| 1166 | func (c *Config) cipherSuites(aesGCMPreferred bool) []uint16 { |
| 1167 | var cipherSuites []uint16 |
no outgoing calls
no test coverage detected