const crypto/des.BlockSize
21 uses
crypto/des (current package)
cipher.go#L15: const BlockSize = 8
cipher.go#L39: func (c *desCipher) BlockSize() int { return BlockSize }
cipher.go#L42: if len(src) < BlockSize {
cipher.go#L45: if len(dst) < BlockSize {
cipher.go#L48: if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
cipher.go#L55: if len(src) < BlockSize {
cipher.go#L58: if len(dst) < BlockSize {
cipher.go#L61: if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
cipher.go#L85: func (c *tripleDESCipher) BlockSize() int { return BlockSize }
cipher.go#L88: if len(src) < BlockSize {
cipher.go#L91: if len(dst) < BlockSize {
cipher.go#L94: if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
cipher.go#L123: if len(src) < BlockSize {
cipher.go#L126: if len(dst) < BlockSize {
cipher.go#L129: if alias.InexactOverlap(dst[:BlockSize], src[:BlockSize]) {
crypto/x509
pem_decrypt.go#L51: blockSize: des.BlockSize,
pem_decrypt.go#L57: blockSize: des.BlockSize,
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |