Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMechanismListMIC (0.14 sec)

  1. src/test/java/jcifs/spnego/SpnegoTokenTest.java

            byte[] mic = new byte[] { 7, 8, 9, 10 };
            t.setMechanismListMIC(mic);
            assertArrayEquals(mic, t.getMechanismListMIC(), "mechanismListMIC should round-trip");
    
            // Document current behavior: no defensive copy (reference exposed)
            mic[1] = 42;
            assertEquals(42, t.getMechanismListMIC()[1], "no defensive copy; reflects external mutation");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/spnego/NegTokenTargTest.java

            assertEquals(mech, roundTrip.getMechanism(), "mechanism should roundtrip");
            assertArrayEquals(tokenArray, roundTrip.getMechanismToken(), "mechanism token should roundtrip");
            assertArrayEquals(mic, roundTrip.getMechanismListMIC(), "mic should roundtrip");
        }
    
        @Test
        @DisplayName("default constructor – unspecified result")
        void testDefaultResult() {
            NegTokenTarg nt = new NegTokenTarg();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/SpnegoToken.java

        }
    
        /**
         * Gets the mechanism list MIC (Message Integrity Code) for integrity protection
         * @return the mechanism list MIC bytes
         */
        public byte[] getMechanismListMIC() {
            return this.mechanismListMIC;
        }
    
        /**
         * Sets the mechanism list MIC (Message Integrity Code) for integrity protection
         * @param mechanismListMIC the mechanism list MIC bytes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/spnego/NegTokenTarg.java

                if (mechanismToken != null) {
                    fields.add(new DERTaggedObject(true, 2, new DEROctetString(mechanismToken)));
                }
                final byte[] mechanismListMIC = getMechanismListMIC();
                if (mechanismListMIC != null) {
                    fields.add(new DERTaggedObject(true, 3, new DEROctetString(mechanismListMIC)));
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top