Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for initSecContext (0.19 sec)

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

            }
            throw new SmbException("ExtendedGSSContext is not implemented by GSSContext");
        }
    
    
        @Override
        public byte[] initSecContext ( byte[] token, int off, int len ) throws SmbException {
            try {
                return this.gssContext.initSecContext(token, off, len);
            }
            catch ( GSSException e ) {
                throw new SmbAuthException("GSSAPI mechanism failed", e);
            }
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
Back to top