Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 0b1111_1111 (0.06 sec)

  1. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

         */
        @Test
        @DisplayName("Get should return first occurrence of type")
        void testGetExistingType() {
            List<AvPair> pairs = new LinkedList<>();
            AvFlags flags1 = new AvFlags(0x11111111);
            AvFlags flags2 = new AvFlags(0x22222222);
            pairs.add(flags1);
            pairs.add(new AvTimestamp(new byte[8]));
            pairs.add(flags2);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java

            // First decode
            byte[] buffer1 = new byte[50];
            SMBUtil.writeInt4(0x11111111, buffer1, 0);
            SMBUtil.writeInt2(0x1111, buffer1, 20);
            SMBUtil.writeInt2(0x0210, buffer1, 22);
    
            response.decode(buffer1, 0, 24);
            assertEquals(0x11111111, response.getCapabilities(), "First decode capabilities");
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/rpcTest.java

                rpc.policy_handle policyHandle = new rpc.policy_handle();
                policyHandle.type = 123;
                policyHandle.uuid = new rpc.uuid_t();
                policyHandle.uuid.time_low = 0x11111111;
                policyHandle.uuid.time_mid = (short) 0x2222;
                policyHandle.uuid.time_hi_and_version = (short) 0x3333;
                policyHandle.uuid.clock_seq_hi_and_reserved = (byte) 0x44;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java

        void testDecodeWithSingleSectorPerAllocation() throws SMBProtocolDecodingException {
            // Prepare test data with sectPerAlloc = 1
            byte[] buffer = new byte[22];
            int idFileSystem = 0x11111111;
            int sectPerAlloc = 1;
            long alloc = 1000L;
            long free = 500L;
            int bytesPerSect = 512;
    
            // Encode test data
            int offset = 0;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  5. lib/fips140/v1.1.0-rc1.zip

    n; i += 4 { b0, b1, b2, b3, b4 := pk[0], pk[1], pk[2], pk[3], pk[4] t1[r][i+0] = uint16(b0>>0) | uint16(b1&0b0000_0011)<<8 t1[r][i+1] = uint16(b1>>2) | uint16(b2&0b0000_1111)<<6 t1[r][i+2] = uint16(b2>>4) | uint16(b3&0b0011_1111)<<4 t1[r][i+3] = uint16(b3>>6) | uint16(b4&0b1111_1111)<<2 pk = pk[5:] } } return ρ, nil } var errInvalidPublicKeyL = errors.New("mldsa: invalid public key length") func NewPublicKey44(pk []byte) (*PublicKey, error) { return newPublicKey(pk, params44) } func NewPublicKey65(pk...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
  6. lib/fips140/v1.0.0-c2097c7c.zip

    selIsZero := subtle.ConstantTimeByteEq(sel, 0) p.Select(NewP256Point(), t.Projective(), selIsZero) for index >= 5 { index -= 6 if index >= 0 { sel, sign = boothW6(s.Rsh(index) & 0b1111111) } else { // Booth encoding considers a virtual zero bit at index -1, // so we shift left the least significant limb. wvalue := (s[0] << 1) & 0b1111111 sel, sign = boothW6(wvalue) } table := &p256GeneratorTables[(index+1)/6] table.Select(t, sel) t.Negate(sign) selIsZero := subtle.ConstantTimeByteEq(sel, 0) p.AddAffine(p,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
Back to top