mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
16 lines
228 B
Go
16 lines
228 B
Go
package boring
|
|
|
|
import (
|
|
"crypto/cipher"
|
|
"errors"
|
|
)
|
|
|
|
const Enabled bool = false
|
|
|
|
func NewGCMTLS(_ cipher.Block) (cipher.AEAD, error) {
|
|
return nil, errors.New("boring not implemented")
|
|
}
|
|
|
|
func Unreachable() {
|
|
// do nothing
|
|
}
|