Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewCFBEncrypter (0.25 sec)

  1. src/crypto/cipher/cfb.go

    		if !x.decrypt {
    			copy(x.next[x.outUsed:], dst)
    		}
    		dst = dst[n:]
    		src = src[n:]
    		x.outUsed += n
    	}
    }
    
    // NewCFBEncrypter returns a [Stream] which encrypts with cipher feedback mode,
    // using the given [Block]. The iv must be the same length as the [Block]'s block
    // size.
    func NewCFBEncrypter(block Block, iv []byte) Stream {
    	return newCFB(block, iv, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"AEAD", Type, 2},
    		{"Block", Type, 0},
    		{"BlockMode", Type, 0},
    		{"NewCBCDecrypter", Func, 0},
    		{"NewCBCEncrypter", Func, 0},
    		{"NewCFBDecrypter", Func, 0},
    		{"NewCFBEncrypter", Func, 0},
    		{"NewCTR", Func, 0},
    		{"NewGCM", Func, 2},
    		{"NewGCMWithNonceSize", Func, 5},
    		{"NewGCMWithTagSize", Func, 11},
    		{"NewOFB", Func, 0},
    		{"Stream", Type, 0},
    		{"StreamReader", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top