Package com.caucho.hmtp

Examples of com.caucho.hmtp.SignedCredentials


  void authenticate(String to, Object credentials, String ipAddress)
  {
    Authenticator auth = getAuth();

    if (credentials instanceof SignedCredentials) {
      SignedCredentials signedCred = (SignedCredentials) credentials;

      String uid = signedCred.getUid();
      String nonce = signedCred.getNonce();
      String signature = signedCred.getSignature();
     
      /*
      String savedNonce = _nonceMap.get(uid);
     
      if (savedNonce == null)
View Full Code Here

TOP

Related Classes of com.caucho.hmtp.SignedCredentials

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.