- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for readTagNumber (1.47 seconds)
-
src/main/java/jcifs/pac/ASN1Util.java
*/ public static byte[] readUnparsedTagged(final int expectTag, final int limit, final ASN1InputStream in) throws IOException { final int ftag = in.read(); final int tag = readTagNumber(in, ftag); if (tag != expectTag) { throw new IOException("Unexpected tag " + tag); } final int length = readLength(in, limit, false);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.2K bytes - Click Count (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
}, "Should throw IOException for unexpected tag"); } // --- readTagNumber --- @Test void testReadTagNumber_Simple() throws IOException { // Simple tag 5 InputStream s = new ByteArrayInputStream(new byte[] {}); int tagNo = ASN1Util.readTagNumber(s, 0x05); assertEquals(5, tagNo); } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.4K bytes - Click Count (0)