Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sidBytes (0.03 sec)

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

            readFully(bytes);
    
            final byte[] sidBytes = new byte[8 + bytes.length];
            sidBytes[0] = 1;
            sidBytes[1] = (byte) (bytes.length / 4);
            System.arraycopy(new byte[] { 0, 0, 0, 0, 0, 5 }, 0, sidBytes, 2, 6);
            System.arraycopy(bytes, 0, sidBytes, 8, bytes.length);
    
            return new SID(sidBytes, 0);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top