diff options
author | subtly <subtly@users.noreply.github.com> | 2015-03-08 20:48:49 +0800 |
---|---|---|
committer | subtly <subtly@users.noreply.github.com> | 2015-03-08 20:48:49 +0800 |
commit | ee02d25453b0abe3ed6c20138517d1c7a21c0aed (patch) | |
tree | 10f44941f5101a1c3170bd5f052beff78a9ecc4c /crypto.cpp | |
parent | 587e544063da2f14819f15d2a55859305fa80e00 (diff) | |
download | dexon-solidity-ee02d25453b0abe3ed6c20138517d1c7a21c0aed.tar dexon-solidity-ee02d25453b0abe3ed6c20138517d1c7a21c0aed.tar.gz dexon-solidity-ee02d25453b0abe3ed6c20138517d1c7a21c0aed.tar.bz2 dexon-solidity-ee02d25453b0abe3ed6c20138517d1c7a21c0aed.tar.lz dexon-solidity-ee02d25453b0abe3ed6c20138517d1c7a21c0aed.tar.xz dexon-solidity-ee02d25453b0abe3ed6c20138517d1c7a21c0aed.tar.zst dexon-solidity-ee02d25453b0abe3ed6c20138517d1c7a21c0aed.zip |
coding standards
Diffstat (limited to 'crypto.cpp')
-rw-r--r-- | crypto.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -658,9 +658,9 @@ BOOST_AUTO_TEST_CASE(cryptopp_aes128_ctr) BOOST_REQUIRE(text != original); cipherCopy = text; } - catch(CryptoPP::Exception& e) + catch (CryptoPP::Exception& _e) { - cerr << e.what() << endl; + cerr << _e.what() << endl; } try @@ -670,9 +670,9 @@ BOOST_AUTO_TEST_CASE(cryptopp_aes128_ctr) d.ProcessData(out, in, text.size()); BOOST_REQUIRE(text == original); } - catch(CryptoPP::Exception& e) + catch (CryptoPP::Exception& _e) { - cerr << e.what() << endl; + cerr << _e.what() << endl; } @@ -690,9 +690,9 @@ BOOST_AUTO_TEST_CASE(cryptopp_aes128_ctr) // yep, ctr mode. BOOST_REQUIRE(cipherCopy == original); } - catch(CryptoPP::Exception& e) + catch (CryptoPP::Exception& _e) { - cerr << e.what() << endl; + cerr << _e.what() << endl; } } |