Server host key information. A bitmask containing the available fields. Check for combinations of: HostkeyMD5, HostkeySHA1, HostkeySHA256, HostkeyRaw.
| 286 | // Server host key information. A bitmask containing the available fields. |
| 287 | // Check for combinations of: HostkeyMD5, HostkeySHA1, HostkeySHA256, HostkeyRaw. |
| 288 | type HostkeyCertificate struct { |
| 289 | Kind HostkeyKind |
| 290 | HashMD5 [16]byte |
| 291 | HashSHA1 [20]byte |
| 292 | HashSHA256 [32]byte |
| 293 | Hostkey []byte |
| 294 | SSHPublicKey ssh.PublicKey |
| 295 | } |
| 296 | |
| 297 | type PushOptions struct { |
| 298 | // Callbacks to use for this push operation |
nothing calls this directly
no outgoing calls
no test coverage detected