Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sigSize (0.06 sec)

  1. src/main/java/jcifs/pac/PacDataInputStream.java

         * @throws PACDecodingException if the SID data is invalid
         */
        public SID readSid() throws IOException, PACDecodingException {
            final int sidSize = readInt();
            final byte[] bytes = new byte[8 + sidSize * 4];
            readFully(bytes);
            return new SID(bytes, 0);
        }
    
        /**
         * Skips the specified number of bytes in the stream.
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/PacDataInputStreamTest.java

        }
    
        @Test
        public void testReadSid() throws IOException, PACDecodingException {
            // A simple SID: S-1-1-0
            byte[] data = new byte[] { 0x01, 0x00, 0x00, 0x00, // sidSize = 1
                    0x01, // revision
                    0x01, // sub-authority count
                    0x00, 0x00, 0x00, 0x00, 0x00, 0x01, // authority
                    0x00, 0x00, 0x00, 0x00 // sub-authority 1
            };
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. lib/fips140/v1.1.0-rc1.zip

    t.Errorf("PublicKeySize65 constant incorrect") } if PublicKeySize87 != pubKeySize(params87) { t.Errorf("PublicKeySize87 constant incorrect") } if SignatureSize44 != sigSize(params44) { t.Errorf("SignatureSize44 constant incorrect") } if SignatureSize65 != sigSize(params65) { t.Errorf("SignatureSize65 constant incorrect") } if SignatureSize87 != sigSize(params87) { t.Errorf("SignatureSize87 constant incorrect") } } func TestPower2Round(t *testing.T) { t.Parallel() for x := range uint32(q) { rr, _ := fieldToMontgomery(x)...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top