type github.com/refraction-networking/utls.KeySharesParameters

10 uses

	github.com/refraction-networking/utls (current package)
		u_alias.go#L21: type KeySharesParameters struct{}
		u_alias.go#L23: func NewKeySharesParameters() *KeySharesParameters { return &KeySharesParameters{} }
		u_alias.go#L25: func (*KeySharesParameters) AddEcdheKeypair(curveID CurveID, ecdheKey *ecdh.PrivateKey, ecdhePubKey *ecdh.PublicKey) {
		u_alias.go#L29: func (*KeySharesParameters) GetEcdheKey(curveID CurveID) (ecdheKey *ecdh.PrivateKey, ok bool) { return }
		u_alias.go#L31: func (*KeySharesParameters) GetEcdhePubkey(curveID CurveID) (params *ecdh.PublicKey, ok bool) { return }
		u_alias.go#L33: func (*KeySharesParameters) AddKemKeypair(curveID CurveID, kemKey any, kemPubKey any) {
		u_alias.go#L37: func (ksp *KeySharesParameters) GetKemKey(curveID CurveID) (kemKey any, ok bool) { return }
		u_alias.go#L39: func (ksp *KeySharesParameters) GetKemPubkey(curveID CurveID) (params any, ok bool) { return }
		u_public.go#L45: 	KeySharesParams *KeySharesParameters