Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for short (0.19 sec)

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

        static int readLength(InputStream s, int limit, boolean isParsing)
                throws IOException
        {
            int length = s.read();
            if (0 == (length >>> 7))
            {
                // definite-length short form
                return length;
            }
            if (0x80 == length)
            {
                // indefinite-length
                return -1;
            }
            if (length < 0)
            {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top