int RippleAddress::setSeed1751(const std::string& strHuman1751) { std::string strKey; int iResult = eng2key(strKey, strHuman1751); if (1 == iResult) { std::vector<unsigned char> vchLittle(strKey.rbegin(), strKey.rend()); uint128 uSeed(vchLittle); setSeed(uSeed); } return iResult; }
int RippleAddress::setSeed1751 (const std::string& strHuman1751) { std::string strKey; int iResult = RFC1751::getKeyFromEnglish (strKey, strHuman1751); if (1 == iResult) { Blob vchLittle (strKey.rbegin (), strKey.rend ()); uint128 uSeed (vchLittle); setSeed (uSeed); } return iResult; }