Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pc (1.46 sec)

  1. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            }
            return true;
        }
    
    
        private static boolean checkPreauthContext ( Smb2NegotiateRequest req, PreauthIntegrityNegotiateContext pc ) {
            if ( pc.getHashAlgos() == null || pc.getHashAlgos().length != 1 ) {
                log.error("Server returned no hash selection");
                return false;
            }
    
            PreauthIntegrityNegotiateContext rpc = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/JAASAuthenticator.java

                    }
                }
                else if ( cb instanceof PasswordCallback ) {
                    PasswordCallback pc = (PasswordCallback) cb;
                    if ( this.getPassword() != null ) {
                        pc.setPassword(this.getPassword().toCharArray());
                    }
                }
            }
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
Back to top