Base64Header returns the base64-encoded GS2 header and channel binding data.
()
| 334 | } |
| 335 | |
| 336 | // Base64Header returns the base64-encoded GS2 header and channel binding data. |
| 337 | func (si SASLInitial) Base64Header() string { |
| 338 | return base64.StdEncoding.EncodeToString(si.base64HeaderBytes()) |
| 339 | } |
| 340 | |
| 341 | // MessageBare returns the message without the GS2 header. |
no test coverage detected