diff options
Diffstat (limited to 'src/scripts/comba.py')
-rwxr-xr-x | src/scripts/comba.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/scripts/comba.py b/src/scripts/comba.py index dcac14657..f0165a3ce 100755 --- a/src/scripts/comba.py +++ b/src/scripts/comba.py @@ -1,7 +1,10 @@ -#!/usr/bin/python +#!/usr/bin/python2 import sys +# (C) 2011,2014,2015 Jack Lloyd +# Botan is released under the Simplified BSD License (see license.txt) + # Used to generate src/lib/math/mp/mp_comba.cpp def comba_indexes(N): @@ -78,7 +81,8 @@ def main(args = None): print """/* * Comba Multiplication and Squaring -* (C) 1999-2007,2011,2014 Jack Lloyd +* +* This file was automatically generated by comba.py * * Botan is released under the Simplified BSD License (see license.txt) */ |