crypto/tls.halfConn.cipher (field)

14 uses

	crypto/tls (current package)
		conn.go#L160: 	cipher  interface{} // cipher algorithm
		conn.go#L204: 	hc.cipher = hc.nextCipher
		conn.go#L217: 	hc.cipher = suite.aead(key, iv)
		conn.go#L242: 	if hc.cipher == nil {
		conn.go#L246: 	switch c := hc.cipher.(type) {
		conn.go#L340: 	if hc.cipher != nil {
		conn.go#L341: 		switch c := hc.cipher.(type) {
		conn.go#L465: 	if hc.cipher == nil {
		conn.go#L472: 		if _, isCBC := hc.cipher.(cbcMode); !isCBC && explicitNonceLen < 16 {
		conn.go#L491: 	switch c := hc.cipher.(type) {
		conn.go#L668: 	if c.in.cipher == nil && typ == recordTypeApplicationData {
		conn.go#L869: 	if c.out.cipher != nil {
		conn.go#L870: 		switch ciph := c.out.cipher.(type) {
		conn.go#L1141: 		if _, ok := c.out.cipher.(cipher.BlockMode); ok {