123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729 |
- // Copyright (C) 2010 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- // $Id$
- #include <cassert>
- #include <iostream>
- #include <vector>
- #include <boost/foreach.hpp>
- #include <dns/base32.h>
- #include <dns/buffer.h>
- #include <dns/message.h>
- #include <dns/name.h>
- #include <dns/rdataclass.h>
- #include <dns/rrset.h>
- #include <dns/rrsetlist.h>
- #include <dns/sha1.h>
- #include <cc/data.h>
- #include "data_source.h"
- #include "query.h"
- using namespace std;
- using namespace isc::dns;
- using namespace isc::dns::rdata;
- namespace isc {
- namespace auth {
- // Add a task to the query task queue to look up additional data
- // (i.e., address records for the names included in NS or MX records)
- static void
- getAdditional(Query& q, RRsetPtr rrset) {
- if (!q.wantAdditional()) {
- return;
- }
- RdataIteratorPtr it = rrset->getRdataIterator();
- for (it->first(); !it->isLast(); it->next()) {
- const Rdata& rd(it->getCurrent());
- QueryTaskPtr newtask = QueryTaskPtr();
- if (rrset->getType() == RRType::NS()) {
- const generic::NS& ns = dynamic_cast<const generic::NS&>(rd);
- newtask = QueryTaskPtr(new QueryTask(ns.getNSName(), q.qclass(),
- Section::ADDITIONAL(),
- QueryTask::GLUE_QUERY,
- QueryTask::GETADDITIONAL));
- } else if (rrset->getType() == RRType::MX()) {
- const generic::MX& mx = dynamic_cast<const generic::MX&>(rd);
- newtask = QueryTaskPtr(new QueryTask(mx.getMXName(), q.qclass(),
- Section::ADDITIONAL(),
- QueryTask::NOGLUE_QUERY,
- QueryTask::GETADDITIONAL));
- }
- if (newtask) {
- q.tasks().push(newtask);
- }
- }
- }
- // Synthesize a CNAME answer, for the benefit of clients that don't
- // understand DNAME
- static void
- synthesizeCname(Query& q, QueryTaskPtr task, RRsetPtr rrset, RRsetList& target)
- {
- RdataIteratorPtr it = rrset->getRdataIterator();
- // More than one DNAME RR in the RRset is illegal, so we only have
- // to process the first one.
- it->first();
- if (it->isLast()) {
- return;
- }
- const Rdata& rd(it->getCurrent());
- const generic::DNAME& dname = dynamic_cast<const generic::DNAME&>(rd);
- const Name& dname_target(dname.getDname());
- RRsetPtr cname(new RRset(task->qname, task->qclass, RRType::CNAME(),
- rrset->getTTL()));
- const int qnlen = task->qname.getLabelCount();
- const int dnlen = rrset->getName().getLabelCount();
- assert(qnlen > dnlen);
- const Name& prefix(task->qname.split(0, qnlen - dnlen));
- cname->addRdata(generic::CNAME(prefix.concatenate(dname_target)));
- target.addRRset(cname);
- }
- // Add a task to the query task queue to look up the data pointed
- // to by a CNAME record
- static void
- chaseCname(Query& q, QueryTaskPtr task, RRsetPtr rrset)
- {
- RdataIteratorPtr it = rrset->getRdataIterator();
- // More than one CNAME RR in the RRset is illegal, so we only have
- // to process the first one.
- it->first();
- if (it->isLast()) {
- return;
- }
- q.tasks().push(QueryTaskPtr(
- new QueryTask(dynamic_cast<const generic::CNAME&>
- (it->getCurrent()).getCname(),
- task->qclass,
- task->qtype,
- Section::ANSWER(),
- QueryTask::FOLLOWCNAME)));
- }
- // Perform the query specified in a QueryTask object
- static DataSrc::Result
- doQueryTask(const DataSrc* ds, const Name* zonename, Query& q, QueryTask& task,
- RRsetList& target)
- {
- switch (task.op) {
- case QueryTask::AUTH_QUERY:
- return (ds->findRRset(q, task.qname, task.qclass, task.qtype,
- target, task.flags, zonename));
- case QueryTask::SIMPLE_QUERY:
- return (ds->findExactRRset(q, task.qname, task.qclass, task.qtype,
- target, task.flags, zonename));
- case QueryTask::GLUE_QUERY:
- case QueryTask::NOGLUE_QUERY:
- return (ds->findAddrs(q, task.qname, task.qclass, target,
- task.flags, zonename));
- case QueryTask::REF_QUERY:
- return (ds->findReferral(q, task.qname, task.qclass, target,
- task.flags, zonename));
- }
- // Not reached
- return (DataSrc::ERROR);
- }
- // Copy referral information into the authority section of a message
- static inline void
- copyAuth(Query& q, RRsetList& auth)
- {
- BOOST_FOREACH(RRsetPtr rrset, auth) {
- if (rrset->getType() == RRType::DNAME()) {
- continue;
- }
- if (rrset->getType() == RRType::DS() && !q.wantDnssec()) {
- continue;
- }
- q.message().addRRset(Section::AUTHORITY(), rrset, q.wantDnssec());
- getAdditional(q, rrset);
- }
- }
- // Query for referrals (i.e., NS/DS or DNAME) at a given name
- static inline bool
- refQuery(const Name& name, Query& q, QueryTaskPtr task,
- const DataSrc* ds, const Name* zonename, RRsetList& target)
- {
- QueryTask newtask(name, q.qclass(), QueryTask::REF_QUERY);
- if (doQueryTask(ds, zonename, q, newtask, target) != DataSrc::SUCCESS) {
- // Lookup failed
- return (false);
- }
-
- // Referral bit is expected, so clear it when checking flags
- if ((newtask.flags & ~DataSrc::REFERRAL) != 0) {
- return (false);
- }
- return (true);
- }
- // Match downward, from the zone apex to the query name, looking for
- // referrals.
- static inline bool
- hasDelegation(const DataSrc* ds, const Name* zonename, Query& q,
- QueryTaskPtr task)
- {
- int nlen = task->qname.getLabelCount();
- int diff = nlen - zonename->getLabelCount();
- if (diff > 1) {
- bool found = false;
- RRsetList ref;
- for (int i = diff; i > 1; --i) {
- const Name sub(task->qname.split(i - 1, nlen - i));
- if (refQuery(sub, q, task, ds, zonename, ref)) {
- found = true;
- break;
- }
- }
- // Found a referral while getting additional data
- // for something other than NS; we skip it.
- if (found && task->op == QueryTask::NOGLUE_QUERY) {
- return (true);
- }
- // Found a referral while getting answer data;
- // send a delegation.
- if (found) {
- if (RRsetPtr r = ref[RRType::DNAME()]) {
- RRsetList syn;
- q.message().addRRset(Section::ANSWER(), r, q.wantDnssec());
- q.message().setHeaderFlag(MessageFlag::AA());
- synthesizeCname(q, task, r, syn);
- if (syn.size() == 1) {
- q.message().addRRset(Section::ANSWER(),
- syn[RRType::CNAME()],
- q.wantDnssec());
- chaseCname(q, task, syn[RRType::CNAME()]);
- return (true);
- }
- }
- copyAuth(q, ref);
- return (true);
- }
- }
- // We appear to have authoritative data; set the header
- // flag. (We may clear it later if we find a referral
- // at the actual qname node.)
- if (task->op == QueryTask::AUTH_QUERY &&
- task->state == QueryTask::GETANSWER) {
- q.message().setHeaderFlag(MessageFlag::AA());
- }
- return (false);
- }
- // Attempt a wildcard lookup
- static inline DataSrc::Result
- tryWildcard(Query& q, QueryTaskPtr task, const DataSrc* ds,
- const Name* zonename, bool& found)
- {
- Message& m = q.message();
- DataSrc::Result result;
- found = false;
- if ((task->flags & DataSrc::NAME_NOT_FOUND) == 0 ||
- (task->state != QueryTask::GETANSWER &&
- task->state != QueryTask::FOLLOWCNAME)) {
- return (DataSrc::SUCCESS);
- }
- int nlen = task->qname.getLabelCount();
- int diff = nlen - zonename->getLabelCount();
- if (diff < 1) {
- return (DataSrc::SUCCESS);
- }
- RRsetList wild;
- Name star("*");
- uint32_t rflags = 0;
- for (int i = 1; i <= diff; ++i) {
- const Name& wname(star.concatenate(task->qname.split(i, nlen - i)));
- QueryTask newtask(wname, task->qclass, task->qtype,
- QueryTask::SIMPLE_QUERY);
- result = doQueryTask(ds, zonename, q, newtask, wild);
- if (result == DataSrc::SUCCESS &&
- (newtask.flags == 0 || (newtask.flags & DataSrc::CNAME_FOUND))) {
- rflags = newtask.flags;
- found = true;
- break;
- }
- }
- // A wildcard was found. Add the data to the answer
- // section (but with the name changed to match the
- // qname), and then continue as if this were a normal
- // answer: if a CNAME, chase the target, otherwise
- // add authority.
- if (found) {
- if ((rflags & DataSrc::CNAME_FOUND) != 0) {
- if (RRsetPtr rrset = wild[RRType::CNAME()]) {
- rrset->setName(task->qname);
- m.addRRset(Section::ANSWER(), rrset, q.wantDnssec());
- chaseCname(q, task, rrset);
- }
- } else {
- BOOST_FOREACH (RRsetPtr rrset, wild) {
- rrset->setName(task->qname);
- m.addRRset(Section::ANSWER(), rrset, q.wantDnssec());
- }
- RRsetList auth;
- if (! refQuery(*zonename, q, task, ds, zonename, auth)) {
- return (DataSrc::ERROR);
- }
- copyAuth(q, auth);
- }
- } else if (q.wantDnssec()) {
- // No wildcard found; add an NSEC to prove it
- RRsetList nsec;
- QueryTask newtask(*zonename, task->qclass, RRType::NSEC(),
- QueryTask::SIMPLE_QUERY);
- result = doQueryTask(ds, zonename, q, newtask, nsec);
- if (result != DataSrc::SUCCESS) {
- return (DataSrc::ERROR);
- }
- if (newtask.flags == 0) {
- m.addRRset(Section::AUTHORITY(), nsec[RRType::NSEC()], true);
- }
- }
- return (DataSrc::SUCCESS);
- }
- //
- // doQuery: Processes a query.
- //
- void
- DataSrc::doQuery(Query& q)
- {
- Message& m = q.message();
- vector<RRsetPtr> additional;
- m.clearHeaderFlag(MessageFlag::AA());
- while (!q.tasks().empty()) {
- QueryTaskPtr task = q.tasks().front();
- q.tasks().pop();
- // These task types should never be on the task queue.
- if (task->op == QueryTask::SIMPLE_QUERY ||
- task->op == QueryTask::REF_QUERY) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- // Find the closest enclosing zone for which we are authoritative,
- // and the concrete data source which is authoritative for it.
- // (Note that RRtype DS queries need to go to the parent.)
- Name matchname(task->qtype == RRType::DS() ?
- task->qname.split(1, task->qname.getLabelCount() - 1) :
- task->qname);
- NameMatch match(matchname);
- findClosestEnclosure(match);
- const DataSrc* datasource = match.bestDataSrc();
- const Name* zonename = match.closestName();
- assert((datasource == NULL && zonename == NULL) ||
- (datasource != NULL && zonename != NULL));
- RRsetList data;
- Result result = SUCCESS;
- if (datasource) {
- // For these query task types, if there is more than
- // one level between the zone name and qname, we need to
- // check the intermediate nodes for referrals.
- if ((task->op == QueryTask::AUTH_QUERY ||
- task->op == QueryTask::NOGLUE_QUERY) &&
- hasDelegation(datasource, zonename, q, task)) {
- continue;
- }
- result = doQueryTask(datasource, zonename, q, *task, data);
- if (result != SUCCESS) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- // Query found a referral; let's find out if that was expected--
- // i.e., if an NS was at the zone apex, or if we were querying
- // specifically for the DS or DNAME record.
- if ((task->flags & REFERRAL) != 0 &&
- (zonename->getLabelCount() == task->qname.getLabelCount() ||
- task->qtype == RRType::DS() ||
- task->qtype == RRType::DNAME())) {
- task->flags &= ~REFERRAL;
- }
- } else {
- task->flags = NO_SUCH_ZONE;
- // No such zone. If we're chasing cnames or adding additional
- // data, that's okay, but if doing an original query, return
- // REFUSED.
- if (task->state == QueryTask::GETANSWER) {
- m.setRcode(Rcode::REFUSED());
- return;
- }
- continue;
- }
- if (result == SUCCESS && task->flags == 0) {
- bool have_ns = false, need_auth = false;
- switch (task->state) {
- case QueryTask::GETANSWER:
- case QueryTask::FOLLOWCNAME:
- BOOST_FOREACH(RRsetPtr rrset, data) {
- m.addRRset(task->section, rrset, q.wantDnssec());
- if (q.tasks().empty()) {
- need_auth = true;
- }
- getAdditional(q, rrset);
- if (rrset->getType() == RRType::NS()) {
- have_ns = true;
- }
- }
- q.setStatus(Query::ANSWERED);
- if (need_auth && !have_ns) {
- // Data found, no additional processing needed.
- // Add the NS records for the enclosing zone to
- // the authority section.
- RRsetList auth;
- if (! refQuery(*zonename, q, task, datasource,
- zonename, auth)) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- copyAuth(q, auth);
- }
- continue;
- case QueryTask::GETADDITIONAL:
- // Got additional data. Do not add it to the message
- // yet; instead store it and copy it in at the end
- // (this allow RRSIGs to be omitted if necessary).
- BOOST_FOREACH(RRsetPtr rrset, data) {
- if (q.status() == Query::ANSWERED &&
- rrset->getName() == q.qname() &&
- rrset->getType() == q.qtype()) {
- continue;
- }
- additional.push_back(rrset);
- }
- continue;
- default:
- dns_throw (Unexpected, "unexpected query state");
- }
- } else if (result == ERROR || result == NOT_IMPLEMENTED) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- } else if ((task->flags & CNAME_FOUND) != 0) {
- // The qname node contains a CNAME. Add a new task to the
- // queue to look up its target.
- if (RRsetPtr rrset = data[RRType::CNAME()]) {
- m.addRRset(task->section, rrset, q.wantDnssec());
- chaseCname(q, task, rrset);
- }
- continue;
- } else if ((task->flags & REFERRAL) != 0) {
- // The qname node contains an out-of-zone referral.
- if (task->state == QueryTask::GETANSWER) {
- RRsetList auth;
- m.clearHeaderFlag(MessageFlag::AA());
- if (!refQuery(task->qname, q, task, datasource, zonename,
- auth)) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- BOOST_FOREACH (RRsetPtr rrset, auth) {
- if (rrset->getType() == task->qtype) {
- m.addRRset(Section::ANSWER(), rrset, q.wantDnssec());
- } else if (rrset->getType() == RRType::DS() &&
- q.wantDnssec()) {
- m.addRRset(Section::AUTHORITY(), rrset, true);
- }
- getAdditional(q, rrset);
- }
- }
- continue;
- } else if ((task->flags & (NAME_NOT_FOUND|TYPE_NOT_FOUND)) != 0) {
- // No data found at this qname/qtype.
- // If we were looking for answer data, not additional,
- // and the name was not found, we need to find out whether
- // there are any relevant wildcards.
- bool wildcard_found = false;
- result = tryWildcard(q, task, datasource, zonename, wildcard_found);
- if (result != SUCCESS) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- if (wildcard_found) {
- continue;
- }
- // If we've reached this point, there is definitely no answer.
- // If we were chasing cnames or adding additional data, that's
- // okay, but if we were doing an original query, reply with the
- // SOA in the authority section. For NAME_NOT_FOUND, set
- // NXDOMAIN, and also add the previous NSEC to the authority
- // section. For TYPE_NOT_FOUND, do not set an error rcode,
- // and send the current NSEC in the authority section.
- Name nsecname(task->qname);
- if ((task->flags & NAME_NOT_FOUND) != 0) {
- datasource->findPreviousName(q, task->qname, nsecname,
- zonename);
- }
- if (task->state == QueryTask::GETANSWER) {
- if ((task->flags & NAME_NOT_FOUND) != 0) {
- m.setRcode(Rcode::NXDOMAIN());
- }
- RRsetList soa;
- QueryTask newtask(*zonename, task->qclass, RRType::SOA(),
- QueryTask::SIMPLE_QUERY);
- result = doQueryTask(datasource, zonename, q, newtask, soa);
- if (result != SUCCESS || newtask.flags != 0) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- m.addRRset(Section::AUTHORITY(), soa[RRType::SOA()],
- q.wantDnssec());
- }
- if (q.wantDnssec()) {
- RRsetList nsec;
- QueryTask newtask(nsecname, task->qclass,
- RRType::NSEC(), QueryTask::SIMPLE_QUERY);
- result = doQueryTask(datasource, zonename, q, newtask, nsec);
- if (result != SUCCESS) {
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- if (newtask.flags == 0) {
- m.addRRset(Section::AUTHORITY(), nsec[RRType::NSEC()],
- true);
- }
- }
- return;
- } else {
- // Should never be reached!
- m.setRcode(Rcode::SERVFAIL());
- return;
- }
- }
- // We're done, so now copy in the additional data:
- // data first, then signatures. (If we run out of
- // space, signatures in additional section are
- // optional.)
- BOOST_FOREACH(RRsetPtr rrset, additional) {
- m.addRRset(Section::ADDITIONAL(), rrset, false);
- }
- if (q.wantDnssec()) {
- BOOST_FOREACH(RRsetPtr rrset, additional) {
- if (rrset->getRRsig()) {
- m.addRRset(Section::ADDITIONAL(), rrset->getRRsig(), false);
- }
- }
- }
- }
- DataSrc::Result
- DataSrc::findAddrs(const Query& q, const Name& qname, const RRClass& qclass,
- RRsetList& target, uint32_t& flags,
- const Name* zonename) const
- {
- Result r;
- bool a = false, aaaa = false;
- flags = 0;
- r = findExactRRset(q, qname, qclass, RRType::A(), target, flags, zonename);
- if (r == SUCCESS && flags == 0) {
- a = true;
- }
- flags = 0;
- r = findExactRRset(q, qname, qclass, RRType::AAAA(), target, flags,
- zonename);
- if (r == SUCCESS && flags == 0) {
- aaaa = true;
- }
- if (!a && !aaaa) {
- flags = TYPE_NOT_FOUND;
- } else {
- flags = 0;
- }
- return (SUCCESS);
- }
- DataSrc::Result
- DataSrc::findReferral(const Query& q, const Name& qname, const RRClass& qclass,
- RRsetList& target, uint32_t& flags,
- const Name* zonename) const
- {
- Result r;
- bool ns = false, ds = false, dname = false;
- flags = 0;
- r = findExactRRset(q, qname, qclass, RRType::NS(), target, flags, zonename);
- if (r == SUCCESS && flags == 0) {
- ns = true;
- } else if ((flags & (NO_SUCH_ZONE|NAME_NOT_FOUND))) {
- return (SUCCESS);
- }
- flags = 0;
- r = findExactRRset(q, qname, qclass, RRType::DS(), target, flags, zonename);
- if (r == SUCCESS && flags == 0) {
- ds = true;
- } else if ((flags & (NO_SUCH_ZONE|NAME_NOT_FOUND))) {
- return (SUCCESS);
- }
- flags = 0;
- r = findExactRRset(q, qname, qclass, RRType::DNAME(), target, flags,
- zonename);
- if (r == SUCCESS && flags == 0) {
- dname = true;
- } else if ((flags & (NO_SUCH_ZONE|NAME_NOT_FOUND))) {
- return (SUCCESS);
- }
- if (!ns && !dname && !ds) {
- flags = TYPE_NOT_FOUND;
- } else {
- flags = 0;
- }
- return (SUCCESS);
- }
- void
- MetaDataSrc::addDataSrc(ConstDataSrcPtr data_src)
- {
- if (getClass() != RRClass::ANY() && data_src->getClass() != getClass()) {
- dns_throw(Unexpected, "class mismatch");
- }
- data_sources.push_back(data_src);
- }
- void
- MetaDataSrc::findClosestEnclosure(NameMatch& match) const
- {
- BOOST_FOREACH (ConstDataSrcPtr data_src, data_sources) {
- if (getClass() != RRClass::ANY() &&
- data_src->getClass() != getClass()) {
- continue;
- }
- data_src->findClosestEnclosure(match);
- }
- }
- NameMatch::~NameMatch()
- {
- delete closest_name_;
- }
- void
- NameMatch::update(const DataSrc& new_source, const Name& container)
- {
- if (closest_name_ == NULL) {
- closest_name_ = new Name(container);
- best_source_ = &new_source;
- return;
- }
- if (container.compare(*closest_name_).getRelation() ==
- NameComparisonResult::SUBDOMAIN) {
- Name* newname = new Name(container);
- delete closest_name_;
- closest_name_ = newname;
- best_source_ = &new_source;
- }
- }
- Nsec3Param::Nsec3Param(uint8_t a, uint8_t f, uint16_t i,
- std::vector<uint8_t>& s) :
- algorithm(a), flags(f), iterations(i), salt(s)
- {}
- string
- Nsec3Param::getHash(const Name& name) const {
- OutputBuffer buf(0);
- name.toWire(buf);
- buf.writeData(&salt[0], salt.size());
- uint8_t* in = (uint8_t*) buf.getData();
- size_t inlength = buf.getLength();
- uint8_t digest[SHA1_HASHSIZE];
- int n = 0;
- SHA1Context sha;
- do {
- SHA1Reset(&sha);
- SHA1Input(&sha, in, inlength);
- SHA1Result(&sha, digest);
- in = digest;
- inlength = SHA1_HASHSIZE;
- } while (n++ < iterations);
- vector<uint8_t> result;
- for (int i = 0; i < SHA1_HASHSIZE; ++i) {
- result.push_back(digest[i]);
- }
- return (encodeBase32(result));
- }
- }
- }
|