// Copyright (c) 2011-2018 The Limenka developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include /* Base58 characters are: "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz" This is: - All numbers except for '0' - All upper-case letters except for 'I' and 'O' - All lower-case letters except for 'l' */ LimenkaAddressEntryValidator::LimenkaAddressEntryValidator(QObject *parent) : QValidator(parent) { } QValidator::State LimenkaAddressEntryValidator::validate(QString &input, std::vector&error_locations) const { // Empty address is "intermediate" input if (input.isEmpty()) return QValidator::Intermediate; // Correction for (int idx = 0; idx < input.size();) { bool removeChar = false; QChar ch = input.at(idx); // Corrections made are very conservative on purpose, to avoid // users unexpectedly getting away with typos that would normally // be detected, and thus sending to the wrong address. switch(ch.unicode()) { // Qt categorizes these as "Other_Format" not "Separator_Space" case 0x200B: // ZERO WIDTH SPACE case 0xFEFF: // ZERO WIDTH NO-BREAK SPACE removeChar = true; break; default: break; } // Remove whitespace if (ch.isSpace()) removeChar = true; // To next character if (removeChar) input.remove(idx, 1); else ++idx; } // Validation QValidator::State state = QValidator::Acceptable; for (int idx = 0; idx < input.size(); ++idx) { int ch = input.at(idx).unicode(); if (((ch >= '0' && ch<='9') || (ch >= 'a' && ch<='z') || (ch >= 'A' && ch<='Z')) && ch != 'I' && ch != 'O') // Characters invalid in both Base58 and Bech32 { // Alphanumeric and not a 'forbidden' character } else { error_locations.push_back(idx); state = QValidator::Invalid; } } return state; } QValidator::State LimenkaAddressEntryValidator::validate(QString &input, int &pos) const { std::vector error_locations; const auto ret = validate(input, error_locations); if (!error_locations.empty()) pos = error_locations.at(0); return ret; } LimenkaAddressCheckValidator::LimenkaAddressCheckValidator(QObject *parent) : LimenkaAddressEntryValidator(parent) { } QValidator::State LimenkaAddressCheckValidator::validate(QString &input, std::vector&error_locations) const { // Validate the passed Limenka address std::string error_msg; CTxDestination dest = DecodeDestination(input.toStdString(), error_msg, &error_locations); if (IsValidDestination(dest)) { return QValidator::Acceptable; } return QValidator::Invalid; }