org.mortbay.jetty.security
Class Credential.Crypt

java.lang.Object
  extended byorg.mortbay.jetty.security.Credential
      extended byorg.mortbay.jetty.security.Credential.Crypt
Enclosing class:
Credential

public static class Credential.Crypt
extends Credential

Unix Crypt Credentials


Nested Class Summary
 
Nested classes inherited from class org.mortbay.jetty.security.Credential
Credential.Crypt, Credential.MD5
 
Field Summary
static String __TYPE
           
 
Method Summary
 boolean check(Object credentials)
          Check a credential
static String crypt(String user, String pw)
           
 
Methods inherited from class org.mortbay.jetty.security.Credential
getCredential
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

__TYPE

public static final String __TYPE
See Also:
Constant Field Values
Method Detail

check

public boolean check(Object credentials)
Description copied from class: Credential
Check a credential

Specified by:
check in class Credential
Parameters:
credentials - The credential to check against. This may either be another Credential object, a Password object or a String which is interpreted by this credential.
Returns:
True if the credentials indicated that the shared secret is known to both this Credential and the passed credential.

crypt

public static String crypt(String user,
                           String pw)