EdDSA signature type added

This commit is contained in:
orignal 2015-04-08 16:18:16 -04:00
parent 8891d9aa4d
commit 454f2dabbd
4 changed files with 40 additions and 3 deletions

View file

@ -77,7 +77,12 @@ namespace crypto
private:
CryptoPP::Integer q, l, d, I;
};
};
bool EDDSAVerifier::Verify (const uint8_t * buf, size_t len, const uint8_t * signature) const
{
return true; // TODO:
}
}
}