type google.golang.org/grpc/credentials/alts/internal.Side

13 uses

	google.golang.org/grpc/credentials/alts/internal (current package)
		common.go#L31: 	ClientSide Side = iota
		common.go#L42: type Side int

	google.golang.org/grpc/credentials/alts/internal/conn
		aes128gcm.go#L47: func NewAES128GCM(side core.Side, key []byte) (ALTSRecordCrypto, error) {
		aes128gcmrekey.go#L56: func NewAES128GCMRekey(side core.Side, key []byte) (ALTSRecordCrypto, error) {
		record.go#L47: type ALTSRecordFunc func(s core.Side, keyData []byte) (ALTSRecordCrypto, error)
		record.go#L103: func NewConn(c net.Conn, side core.Side, recordProtocol string, key []byte, protected []byte) (net.Conn, error) {
		utils.go#L25: func NewOutCounter(s core.Side, overflowLen int) (c Counter) {
		utils.go#L39: func NewInCounter(s core.Side, overflowLen int) (c Counter) {
		utils.go#L58: func CounterSide(c []byte) core.Side {

	google.golang.org/grpc/credentials/alts/internal/handshaker
		handshaker.go#L58: 		rekeyRecordProtocolName: func(s core.Side, keyData []byte) (conn.ALTSRecordCrypto, error) {
		handshaker.go#L154: 	side core.Side

	google.golang.org/grpc/credentials/alts
		alts.go#L135: 	side      core.Side
		alts.go#L150: func newALTS(side core.Side, accounts []string, hsAddress string) credentials.TransportCredentials {