Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XORKeyStream (1.26 sec)

  1. lib/fips140/v1.0.0.zip

    ( "crypto/internal/fips140" "crypto/internal/fips140/alias" "crypto/internal/fips140/subtle" "crypto/internal/fips140deps/byteorder" "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...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg crypto/cipher, type BlockMode interface, BlockSize() int
    pkg crypto/cipher, type BlockMode interface, CryptBlocks([]uint8, []uint8)
    pkg crypto/cipher, type Stream interface { XORKeyStream }
    pkg crypto/cipher, type Stream interface, XORKeyStream([]uint8, []uint8)
    pkg crypto/cipher, type StreamReader struct
    pkg crypto/cipher, type StreamReader struct, R io.Reader
    pkg crypto/cipher, type StreamReader struct, S Stream
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top