Package rocks.xmpp.core.sasl.scram

Examples of rocks.xmpp.core.sasl.scram.ScramClient


        for (String mechanism : mechanisms) {
            if ("ANONYMOUS".equals(mechanism)) {
                return new AnonymousSaslClient();
            }
            if ("SCRAM-SHA-1".equals(mechanism)) {
                return new ScramClient("SHA-1", authorizationId, cbh);
            }
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of rocks.xmpp.core.sasl.scram.ScramClient

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.