#include "bitcoinaddressvalidator.h" /* 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' User friendly Base58 input can map - 'l' and 'I' to '1' - '0' and 'O' to 'o' */ BitcoinAddressValidator::BitcoinAddressValidator(QObject *parent) : QValidator(parent) { } QValidator::State BitcoinAddressValidator::validate(QString &input, int &pos) const { // Correction for(int idx=0; idx= '0' && ch<='9') || (ch >= 'a' && ch<='z') || (ch >= 'A' && ch<='Z')) && ch != 'l' && ch != 'I' && ch != '0' && ch != 'O') { // Alphanumeric and not a 'forbidden' character } else { state = QValidator::Invalid; } } // Empty address is "intermediate" input if(input.isEmpty()) { state = QValidator::Intermediate; } return state; }