summaryrefslogtreecommitdiffstats
blob: 4f390302d7c3f96e3e6195d7ffba4b6028dd17e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Limber/Server/SimpleUserRegistry.h>

namespace Swift {

SimpleUserRegistry::SimpleUserRegistry() {
}

bool SimpleUserRegistry::isValidUserPassword(const JID& user, const SafeByteArray& password) const {
    std::map<JID,SafeByteArray>::const_iterator i = users.find(user);
    return i != users.end() ? i->second == password : false;
}

void SimpleUserRegistry::addUser(const JID& user, const std::string& password) {
    users.insert(std::make_pair(user, createSafeByteArray(password)));
}

}