diff options
author | lloyd <[email protected]> | 2010-03-03 02:02:48 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-03 02:02:48 +0000 |
commit | 82ab6d27cc2b434b4b7ffa528396d67fe6993222 (patch) | |
tree | 6be9207091acf15df1936ab072a2562c7f111ff9 /doc/examples/fpe.cpp | |
parent | a0d6ce4ce5ccb0108cdd155c7abd830432dc6991 (diff) |
Fix minor errors and warnings in the examples. Remove boost dependency from
rng_test example.
Diffstat (limited to 'doc/examples/fpe.cpp')
-rw-r--r-- | doc/examples/fpe.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/examples/fpe.cpp b/doc/examples/fpe.cpp index 73773994b..9b18d4879 100644 --- a/doc/examples/fpe.cpp +++ b/doc/examples/fpe.cpp @@ -18,6 +18,8 @@ using namespace Botan; #include <iostream> #include <stdexcept> +namespace { + byte luhn_checksum(u64bit cc_number) { byte sum = 0; @@ -109,6 +111,8 @@ u64bit decrypt_cc_number(u64bit enc_cc, return cc_derank(dec_cc); } +} + int main(int argc, char* argv[]) { LibraryInitializer init; |