diff --git a/src/hashfile.cpp b/src/hashfile.cpp index 8ecbd85..90bc59b 100644 --- a/src/hashfile.cpp +++ b/src/hashfile.cpp @@ -21,9 +21,7 @@ #include "hashfile.h" #include -using namespace std; - -#include +#include #include "hash.h" #include "iohelpers.h" @@ -72,7 +70,7 @@ public: * list of hash functions available */ -typedef map > hashmap; +typedef std::map > hashmap; void fill_hashmap (hashmap&t) { @@ -89,7 +87,7 @@ void fill_hashmap (hashmap&t) t["SIZE64"] = new size64proc; } -bool hashfile::create (istream&in) +bool hashfile::create (std::istream&in) { hashes.clear(); @@ -120,7 +118,7 @@ bool hashfile::create (istream&in) } } -int hashfile::verify (istream&in) +int hashfile::verify (std::istream&in) { hashmap hm_all, hm; fill_hashmap (hm_all); diff --git a/src/mce_qcmdpc.cpp b/src/mce_qcmdpc.cpp index 742f920..cd7a650 100644 --- a/src/mce_qcmdpc.cpp +++ b/src/mce_qcmdpc.cpp @@ -20,11 +20,12 @@ #include "mce_qcmdpc.h" -#include "fft.h" +#include #include +#include "fft.h" + using namespace mce_qcmdpc; -using namespace std; int mce_qcmdpc::generate (pubkey&pub, privkey&priv, prng&rng, uint block_size, uint block_count, uint wi, @@ -43,7 +44,7 @@ int mce_qcmdpc::generate (pubkey&pub, privkey&priv, prng&rng, * (1+x^n). */ - vector H_last_inv; + std::vector H_last_inv; for (;;) { //retry generating the rightmost block until it is invertible @@ -100,7 +101,7 @@ int mce_qcmdpc::generate (pubkey&pub, privkey&priv, prng&rng, priv.H[i] = Hb; //compute inv(H[last])*H[i] - vector H; + std::vector H; fft (Hb, H); for (j = 0; j < block_size; ++j) H[j] *= H_last_inv[j]; @@ -152,7 +153,7 @@ int pubkey::encrypt (const bvector&in, bvector&out, const bvector&errors) if (G[i].size() != bs) return 1; //prevent mangled keys //first, the checksum part - vector bcheck, Pd, Gd; + std::vector bcheck, Pd, Gd; bcheck.resize (bs, dcx (0, 0)); //initially zero bvector block; @@ -189,9 +190,6 @@ int privkey::decrypt (const bvector & in, bvector & out) return decrypt (in, out, tmp_errors); } -#include -#include - int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors) { uint i, j; @@ -208,7 +206,7 @@ int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors) * probabilistic decoding! */ - vector synd_diag, tmp, Htmp; + std::vector synd_diag, tmp, Htmp; synd_diag.resize (bs, dcx (0, 0)); //precompute the syndrome @@ -225,7 +223,7 @@ int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors) fft (synd_diag, syndrome); //precompute sparse matrix indexes - vector > Hsp; + std::vector > Hsp; Hsp.resize (blocks); for (i = 0; i < blocks; ++i) for (j = 0; j < bs; ++j) @@ -242,7 +240,7 @@ int privkey::decrypt (const bvector & in_orig, bvector & out, bvector & errors) * FFT would be a cool candidate. */ - vector unsat, round_unsat; + std::vector unsat, round_unsat; unsat.resize (cs, 0); for (uint blk = 0; blk < blocks; ++blk) diff --git a/src/str_match.cpp b/src/str_match.cpp index b52d824..72d4575 100644 --- a/src/str_match.cpp +++ b/src/str_match.cpp @@ -22,7 +22,6 @@ #include #include //for tolower() -using namespace std; bool algorithm_name_matches (const std::string& search, const std::string&name) @@ -34,7 +33,7 @@ bool algorithm_name_matches (const std::string& search, return true; } -bool matches_icase (string name, string s) +bool matches_icase (std::string name, std::string s) { transform (name.begin(), name.end(), name.begin(), ::tolower); transform (s.begin(), s.end(), s.begin(), ::tolower);