Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for sigSize (0.07 seconds)

  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.
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.9K bytes
    - Click Count (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
            };
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 9.2K bytes
    - Click Count (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)...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
  4. api/go1.txt

    pkg syscall, const SIGFPE Signal
    pkg syscall, const SIGHUP Signal
    pkg syscall, const SIGILL Signal
    pkg syscall, const SIGINT Signal
    pkg syscall, const SIGKILL Signal
    pkg syscall, const SIGPIPE Signal
    pkg syscall, const SIGQUIT Signal
    pkg syscall, const SIGSEGV Signal
    pkg syscall, const SIGTERM Signal
    pkg syscall, const SIGTRAP Signal
    pkg syscall, const SOCK_DGRAM ideal-int
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
  5. api/go1.1.txt

    pkg syscall, const SIGALRM = 14
    pkg syscall, const SIGFPE = 8
    pkg syscall, const SIGHUP = 1
    pkg syscall, const SIGILL = 4
    pkg syscall, const SIGINT = 2
    pkg syscall, const SIGKILL = 9
    pkg syscall, const SIGPIPE = 13
    pkg syscall, const SIGQUIT = 3
    pkg syscall, const SIGSEGV = 11
    pkg syscall, const SIGTERM = 15
    pkg syscall, const SIGTRAP = 5
    pkg syscall, const SOCK_DGRAM = 2
    pkg syscall, const SOCK_RAW = 3
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Click Count (0)
Back to Top