- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for target_name (0.04 sec)
-
src/main/java/jcifs/ntlmssp/av/AvTargetName.java
super(AvPair.MsvAvTargetName, raw); } /** * Constructs an AvTargetName with the specified target name * * @param targetName the target name string to encode */ public AvTargetName(final String targetName) { this(encode(targetName)); } /** * Gets the target name from this AV pair * * @return the target name */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java
AvTargetName avTargetName = new AvTargetName(targetName); // Verify that getTargetName returns the original string assertEquals(targetName, avTargetName.getTargetName(), "Retrieved target name should match the original string"); } /** * Test getTargetName() method with raw bytes input. * Verifies that the correct string is reconstructed from raw UTF-16LE bytes.
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0)