var golang.org/x/crypto/cast5.sBox

23 uses

	golang.org/x/crypto/cast5 (current package)
		cast5.go#L213: 				w ^= sBox[4][(t[a[2]>>2]>>(24-8*(a[2]&3)))&0xff]
		cast5.go#L214: 				w ^= sBox[5][(t[a[3]>>2]>>(24-8*(a[3]&3)))&0xff]
		cast5.go#L215: 				w ^= sBox[6][(t[a[4]>>2]>>(24-8*(a[4]&3)))&0xff]
		cast5.go#L216: 				w ^= sBox[7][(t[a[5]>>2]>>(24-8*(a[5]&3)))&0xff]
		cast5.go#L217: 				w ^= sBox[x[j]][(t[a[6]>>2]>>(24-8*(a[6]&3)))&0xff]
		cast5.go#L224: 				w := sBox[4][(t[b[0]>>2]>>(24-8*(b[0]&3)))&0xff]
		cast5.go#L225: 				w ^= sBox[5][(t[b[1]>>2]>>(24-8*(b[1]&3)))&0xff]
		cast5.go#L226: 				w ^= sBox[6][(t[b[2]>>2]>>(24-8*(b[2]&3)))&0xff]
		cast5.go#L227: 				w ^= sBox[7][(t[b[3]>>2]>>(24-8*(b[3]&3)))&0xff]
		cast5.go#L228: 				w ^= sBox[4+j][(t[b[4]>>2]>>(24-8*(b[4]&3)))&0xff]
		cast5.go#L245: 	return ((sBox[0][I>>24] ^ sBox[1][(I>>16)&0xff]) - sBox[2][(I>>8)&0xff]) + sBox[3][I&0xff]
		cast5.go#L251: 	return ((sBox[0][I>>24] - sBox[1][(I>>16)&0xff]) + sBox[2][(I>>8)&0xff]) ^ sBox[3][I&0xff]
		cast5.go#L257: 	return ((sBox[0][I>>24] + sBox[1][(I>>16)&0xff]) ^ sBox[2][(I>>8)&0xff]) - sBox[3][I&0xff]
		cast5.go#L260: var sBox = [8][256]uint32{