Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DLSequence (0.04 sec)

  1. src/test/java/jcifs/pac/ASN1UtilTest.java

        }
    
        // --- as(Class, DLSequence, int) ---
    
        @Test
        void testAs_DLSequence_RecursiveBug() {
            // This test exposes a recursive bug in the current implementation
            // The method calls itself, leading to a StackOverflowError.
            ASN1EncodableVector vector = new ASN1EncodableVector();
            vector.add(new ASN1Integer(10));
            DLSequence sequence = new DLSequence(vector);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/ASN1Util.java

            return as(type, tagged.getBaseObject());
        }
    
        /**
         * Gets an element from a DLSequence at the specified index and casts it to the specified type
         * @param <T> the target ASN.1 primitive type
         * @param type the target class type
         * @param sequence the DLSequence
         * @param index the element index
         * @return sequence element cast to type
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top