- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 24 for kerberos (0.1 sec)
-
src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.pac.kerberos; import java.io.ByteArrayInputStream; import java.io.IOException; import java.util.ArrayList; import java.util.Enumeration; import java.util.List; import java.util.Map; import javax.security.auth.kerberos.KerberosKey; import org.bouncycastle.asn1.*; import jcifs.pac.ASN1Util;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
*/ package jcifs.smb; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.security.Key; import javax.security.auth.Subject; import javax.security.auth.kerberos.KerberosTicket; import org.bouncycastle.asn1.ASN1ObjectIdentifier; import org.ietf.jgss.GSSContext; import org.ietf.jgss.GSSCredential; import org.ietf.jgss.GSSException; import org.ietf.jgss.GSSManager;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:22:42 UTC 2018 - 13.9K bytes - Viewed (0) -
README.md
* SMB2 (2.02 protocol level) support, some SMB3 support * Remove global state * Allow per context configuration * Logging through SLF4J * Drop pre-java 1.7 support * Unify authentication subsystem, NTLMSSP/Kerberos support * Large ReadX/WriteX support * Streaming list operations * NtTransNotifyChange support * Google patches: various bugfixes, lastAccess support, retrying requests * A proper test suite * Various fixes
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed May 10 09:29:34 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosConstants.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.pac.kerberos; @SuppressWarnings ( "javadoc" ) public interface KerberosConstants { static final String KERBEROS_OID = "1.2.840.113554.1.2.2"; static final String KERBEROS_VERSION = "5";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 21 21:19:58 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacMac.java
import java.util.Arrays; import java.util.Map; import javax.crypto.Cipher; import javax.crypto.Mac; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import javax.security.auth.kerberos.KerberosKey; @SuppressWarnings ( "javadoc" ) public class PacMac { /** * */ private static final String HMAC_KEY = "HMAC";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SecurityBlob.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * This class represents the Secrity_Blob in SMB Block and is set to support * kerberos authentication. * * @author Shun * */ class SecurityBlob { private byte[] b = new byte[0]; SecurityBlob () {} SecurityBlob ( byte[] b ) { set(b); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
} } /** * This constructor used to instance a SigningDigest object for * signing/verifying SMB using kerberos session key. * The MAC Key = concat(Session Key, Digest of Challenge); * Because of Kerberos Authentication don't have challenge, * The MAC Key = Session Key * * @param macSigningKey * The MAC key used to sign or verify SMB.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
package jcifs.pac; import java.io.ByteArrayInputStream; import java.io.DataInputStream; import java.io.IOException; import java.security.MessageDigest; import java.util.Map; import javax.security.auth.kerberos.KerberosKey; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.util.Hexdump; @SuppressWarnings ( "javadoc" ) public class Pac {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false) * * @return whether DFS lookup is disabled */ boolean isDfsDisabled (); /** * Enable hack to make kerberos auth work with DFS sending short names * * This works by appending the domain name to the netbios short name and will fail horribly if this mapping is not * correct for your domain. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
import javax.security.auth.login.LoginContext; import javax.security.auth.login.LoginException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSException; /** * JAAS kerberos authenticator * * Either configure JAAS for credential caching or reuse a single instance of this authenticator -otherwise you won't * get proper ticket caching. *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0)