| Index: third_party/xmpp/saslmechanism.cc
|
| diff --git a/third_party/xmpp/saslmechanism.cc b/third_party/xmpp/saslmechanism.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..79f1ff0067653f04b7615ac42f929a5541c6a511
|
| --- /dev/null
|
| +++ b/third_party/xmpp/saslmechanism.cc
|
| @@ -0,0 +1,49 @@
|
| +// Copyright 2004 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "third_party/xmllite/xmlelement.h"
|
| +#include "third_party/xmpp/constants.h"
|
| +#include "third_party/xmpp/saslmechanism.h"
|
| +#include "webrtc/base/base64.h"
|
| +
|
| +using rtc::Base64;
|
| +
|
| +namespace buzz {
|
| +
|
| +XmlElement *
|
| +SaslMechanism::StartSaslAuth() {
|
| + return new XmlElement(QN_SASL_AUTH, true);
|
| +}
|
| +
|
| +XmlElement *
|
| +SaslMechanism::HandleSaslChallenge(const XmlElement * challenge) {
|
| + return new XmlElement(QN_SASL_ABORT, true);
|
| +}
|
| +
|
| +void
|
| +SaslMechanism::HandleSaslSuccess(const XmlElement * success) {
|
| +}
|
| +
|
| +void
|
| +SaslMechanism::HandleSaslFailure(const XmlElement * failure) {
|
| +}
|
| +
|
| +std::string
|
| +SaslMechanism::Base64Encode(const std::string & plain) {
|
| + return Base64::Encode(plain);
|
| +}
|
| +
|
| +std::string
|
| +SaslMechanism::Base64Decode(const std::string & encoded) {
|
| + return Base64::Decode(encoded, Base64::DO_LAX);
|
| +}
|
| +
|
| +std::string
|
| +SaslMechanism::Base64EncodeFromArray(const char * plain, size_t length) {
|
| + std::string result;
|
| + Base64::EncodeFromArray(plain, length, &result);
|
| + return result;
|
| +}
|
| +
|
| +}
|
|
|