- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for newCTR (0.06 sec)
-
lib/fips140/v1.0.0.zip
"math/bits" ) type CTR struct { b Block ivlo, ivhi uint64 // start counter as 64-bit limbs offset uint64 // for XORKeyStream only } func NewCTR(b *Block, iv []byte) *CTR { // Allocate the CTR here, in an easily inlineable function, so // the allocation can be done in the caller's stack frame // instead of the heap. See issue 70499. c := newCTR(b, iv) return &c } func newCTR(b *Block, iv []byte) CTR { if len(iv) != BlockSize { panic("bad IV length") } return CTR{ b: *b, ivlo: byteorder.BEUint64(iv[8:16]),...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
api/go1.txt
pkg crypto/cipher, func NewCBCEncrypter(Block, []uint8) BlockMode pkg crypto/cipher, func NewCFBDecrypter(Block, []uint8) Stream pkg crypto/cipher, func NewCFBEncrypter(Block, []uint8) Stream pkg crypto/cipher, func NewCTR(Block, []uint8) Stream pkg crypto/cipher, func NewOFB(Block, []uint8) Stream pkg crypto/cipher, method (StreamReader) Read([]uint8) (int, error) pkg crypto/cipher, method (StreamWriter) Close() error
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)