aboutsummaryrefslogtreecommitdiffstats
path: root/crypto.cpp
diff options
context:
space:
mode:
authorsubtly <subtly@users.noreply.github.com>2014-10-24 03:59:05 +0800
committersubtly <subtly@users.noreply.github.com>2014-10-24 03:59:05 +0800
commit1c8ef381247ae249a4dd9f7567a3aa5aaa0e4417 (patch)
tree3578a2b341d1abaf3fd608a1637dc6fc5cfd7ada /crypto.cpp
parentf02987e2199de3b6296c24cc5746c7857fbed60e (diff)
downloaddexon-solidity-1c8ef381247ae249a4dd9f7567a3aa5aaa0e4417.tar.gz
dexon-solidity-1c8ef381247ae249a4dd9f7567a3aa5aaa0e4417.tar.zst
dexon-solidity-1c8ef381247ae249a4dd9f7567a3aa5aaa0e4417.zip
coding standards
Diffstat (limited to 'crypto.cpp')
-rw-r--r--crypto.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/crypto.cpp b/crypto.cpp
index 8e56d607..57c992e5 100644
--- a/crypto.cpp
+++ b/crypto.cpp
@@ -76,7 +76,7 @@ BOOST_AUTO_TEST_CASE(cryptopp_vs_secp256k1)
Secret s;
pp::SecretFromDL_PrivateKey_EC(d.GetKey(), s);
- assert(s!=previous);
+ assert(s != previous);
Public p;
pp::PublicFromDL_PublicKey_EC(e.GetKey(), p);
@@ -274,8 +274,8 @@ BOOST_AUTO_TEST_CASE(cryptopp_aes128_ctr)
rng.GenerateBlock(key, key.size());
// cryptopp uses IV as nonce/counter which is same as using nonce w/0 ctr
- byte ctr[ AES::BLOCKSIZE ];
- rng.GenerateBlock( ctr, sizeof(ctr) );
+ byte ctr[AES::BLOCKSIZE];
+ rng.GenerateBlock(ctr, sizeof(ctr));
string text = "Now is the time for all good persons to come to the aide of humanity.";
// c++11 ftw
@@ -286,13 +286,13 @@ BOOST_AUTO_TEST_CASE(cryptopp_aes128_ctr)
string cipherCopy;
try
{
- CTR_Mode< AES >::Encryption e;
- e.SetKeyWithIV( key, key.size(), ctr );
+ CTR_Mode<AES>::Encryption e;
+ e.SetKeyWithIV(key, key.size(), ctr);
e.ProcessData(out, in, text.size());
- assert(text!=original);
+ assert(text != original);
cipherCopy = text;
}
- catch( CryptoPP::Exception& e )
+ catch(CryptoPP::Exception& e)
{
cerr << e.what() << endl;
}
@@ -300,11 +300,11 @@ BOOST_AUTO_TEST_CASE(cryptopp_aes128_ctr)
try
{
CTR_Mode< AES >::Decryption d;
- d.SetKeyWithIV( key, key.size(), ctr );
+ d.SetKeyWithIV(key, key.size(), ctr);
d.ProcessData(out, in, text.size());
- assert(text==original);
+ assert(text == original);
}
- catch( CryptoPP::Exception& e )
+ catch(CryptoPP::Exception& e)
{
cerr << e.what() << endl;
}
@@ -313,18 +313,18 @@ BOOST_AUTO_TEST_CASE(cryptopp_aes128_ctr)
// reencrypt ciphertext...
try
{
- assert(cipherCopy!=text);
+ assert(cipherCopy != text);
in = (unsigned char*)&cipherCopy[0];
out = (unsigned char*)&cipherCopy[0];
- CTR_Mode< AES >::Encryption e;
- e.SetKeyWithIV( key, key.size(), ctr );
+ CTR_Mode<AES>::Encryption e;
+ e.SetKeyWithIV(key, key.size(), ctr);
e.ProcessData(out, in, text.size());
// yep, ctr mode.
- assert(cipherCopy==original);
+ assert(cipherCopy == original);
}
- catch( CryptoPP::Exception& e )
+ catch(CryptoPP::Exception& e)
{
cerr << e.what() << endl;
}