Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Gagnon (0.17 sec)

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

                {
                    if ((tagNo >>> 24) != 0)
                    {
                        throw new IOException("Tag number more than 31 bits");
                    }
    
                    tagNo <<= 7;
    
                    b = s.read();
                    if (b < 0)
                    {
                        throw new EOFException("EOF found inside tag value.");
                    }
    
                    tagNo |= (b & 0x7f);
                }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 6.5K bytes
    - Viewed (0)
Back to top