Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for targz (0.01 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

            } else if (spToken instanceof final NegTokenTarg targ) {
                if (this.firstResponse) {
                    if (!this.mechContext.isSupported(targ.getMechanism())) {
                        throw new SmbException("Server chose an unsupported mechanism " + targ.getMechanism());
                    }
                    this.selectedMech = targ.getMechanism();
                    if (targ.getResult() == NegTokenTarg.REQUEST_MIC) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/Kerb5ContextTest.java

            GSSName src = mock(GSSName.class);
            GSSName targ = mock(GSSName.class);
            when(src.export()).thenReturn(buildExportName(new Oid("1.2.3"), "client"));
            when(targ.export()).thenReturn(buildExportName(new Oid("1.2.3"), "service"));
            when(gssContext.getSrcName()).thenReturn(src);
            when(gssContext.getTargName()).thenReturn(targ);
            when(gssContext.getMech()).thenReturn(new Oid("1.2.3"));
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

        public String toString() {
            if (this.gssContext == null || !this.gssContext.isEstablished()) {
                return String.format("KERB5[src=%s,targ=%s]", this.clientName, this.serviceName);
            }
            try {
                return String.format("KERB5[src=%s,targ=%s,mech=%s]", this.gssContext.getSrcName(), this.gssContext.getTargName(),
                        this.gssContext.getMech());
            } catch (GSSException e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13.5K bytes
    - Viewed (1)
Back to top