mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
20 lines
337 B
Go
20 lines
337 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 NewGCMTLS13(_ cipher.Block) (cipher.AEAD, error) {
|
|
return nil, errors.New("boring not implemented")
|
|
}
|
|
|
|
func Unreachable() {
|
|
// do nothing
|
|
}
|