Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sealAsm (0.06 sec)

  1. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

         */
        private static byte[] buildSmb2Header() {
            byte[] header = Arrays.copyOf(SMBUtil.SMB2_HEADER, SMBUtil.SMB2_HEADER.length);
            // Mark as server->client response for realism
            SMBUtil.writeInt4(0x00000001, header, 16); // Flags
            // Command SMB2_CREATE (0x0005)
            SMBUtil.writeInt2(0x0005, header, 12);
            // Some message id
            SMBUtil.writeInt8(1L, header, 24);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. internal/crypto/key.go

    	var bin [4]byte
    	binary.LittleEndian.PutUint32(bin[:], id)
    
    	mac := hmac.New(sha256.New, key[:])
    	mac.Write(bin[:])
    	mac.Sum(partKey[:0])
    	return partKey
    }
    
    // SealETag seals the etag using the object key.
    // It does not encrypt empty ETags because such ETags indicate
    // that the S3 client hasn't sent an ETag = MD5(object) and
    // the backend can pick an ETag value.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri May 16 14:27:42 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    func (o *ObjectInfo) compressionIndexDecrypt(input []byte, h http.Header) ([]byte, error) {
    	return o.metadataDecrypter(h)("compression-index", input)
    }
    
    // SealMD5CurrFn seals md5sum with object encryption key and returns sealed
    // md5sum
    type SealMD5CurrFn func([]byte) []byte
    
    // PutObjReader is a type that wraps sio.EncryptReader and
    // underlying hash.Reader in a struct
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Jun 25 15:08:54 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  4. lib/fips140/v1.0.0-c2097c7c.zip

    hash[:]) for i := range out { out[i] ^= tagMask[i] } } func seal(out []byte, g *GCM, nonce, plaintext, data []byte) { switch { case useGCM: sealKMA(out, g, nonce, plaintext, data) case useGHASH: sealAsm(out, g, nonce, plaintext, data) default: sealGeneric(out, g, nonce, plaintext, data) } } func sealAsm(out []byte, g *GCM, nonce, plaintext, additionalData []byte) { var counter, tagMask [gcmBlockSize]byte deriveCounter(&g.hashKey, &counter, nonce) counterCrypt(g, tagMask[:], tagMask[:], &counter)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  5. lib/fips140/v1.1.0-rc1.zip

    hash[:]) for i := range out { out[i] ^= tagMask[i] } } func seal(out []byte, g *GCM, nonce, plaintext, data []byte) { switch { case useGCM: sealKMA(out, g, nonce, plaintext, data) case useGHASH: sealAsm(out, g, nonce, plaintext, data) default: sealGeneric(out, g, nonce, plaintext, data) } } func sealAsm(out []byte, g *GCM, nonce, plaintext, additionalData []byte) { var counter, tagMask [gcmBlockSize]byte deriveCounter(&g.hashKey, &counter, nonce) counterCrypt(g, tagMask[:], tagMask[:], &counter)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    thing a Lobster Quadrille is!'
    
      `No, indeed,' said Alice.  `What sort of a dance is it?'
    
      `Why,' said the Gryphon, `you first form into a line along the sea-shore--'
    
      `Two lines!' cried the Mock Turtle.  `Seals, turtles, salmon, and so on;
    then, when you've cleared all the jelly-fish out of the way--'
    
      `THAT generally takes some time,' interrupted the Gryphon.
    
      `--you advance twice--'
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top