crypto/cipher.Block.BlockSize (method)
18 uses
crypto/cipher (current package)
cbc.go#L26: blockSize: b.BlockSize(),
cbc.go#L28: tmp: make([]byte, b.BlockSize()),
cbc.go#L46: if len(iv) != b.BlockSize() {
cbc.go#L106: if len(iv) != b.BlockSize() {
cfb.go#L65: blockSize := block.BlockSize()
cipher.go#L17: BlockSize() int
ctr.go#L39: if len(iv) != block.BlockSize() {
ctr.go#L43: if bufSize < block.BlockSize() {
ctr.go#L44: bufSize = block.BlockSize()
ctr.go#L58: bs := x.b.BlockSize()
ctr.go#L83: if x.outUsed >= len(x.out)-x.b.BlockSize() {
gcm.go#L124: if cipher.BlockSize() != gcmBlockSize {
gcm.go#L171: if uint64(len(plaintext)) > ((1<<32)-2)*uint64(g.cipher.BlockSize()) {
gcm.go#L210: if uint64(len(ciphertext)) > ((1<<32)-2)*uint64(g.cipher.BlockSize())+uint64(g.tagSize) {
ofb.go#L22: blockSize := b.BlockSize()
ofb.go#L42: bs := x.b.BlockSize()
ofb.go#L66: if x.outUsed >= len(x.out)-x.b.BlockSize() {
crypto/x509
pem_decrypt.go#L155: if len(b.Bytes)%block.BlockSize() != 0 {
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)