Base64Header returns the base64-encoded GS2 header and channel binding data.
()
| 315 | |
| 316 | // Base64Header returns the base64-encoded GS2 header and channel binding data. |
| 317 | func (si SASLInitial) Base64Header() string { |
| 318 | return base64.StdEncoding.EncodeToString(si.base64HeaderBytes()) |
| 319 | } |
| 320 | |
| 321 | // MessageBare returns the message without the GS2 header. |
| 322 | func (si SASLInitial) MessageBare() []byte { |
no test coverage detected