diff options
author | Rob Austein <sra@hactrn.net> | 2020-07-13 00:33:14 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2020-07-13 00:33:14 -0400 |
commit | f120a263ec422739d201843a5979bfabdf410708 (patch) | |
tree | 4d00ae583353076138a58b42cbdbf92fbb19ce38 /tests | |
parent | d015707e0e26bafbfad72511c0a47cbb66c90971 (diff) |
Whack all Python shebangs to Python 3
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/parallel-signatures.py | 2 | ||||
-rw-r--r-- | tests/test-rsa.py | 2 | ||||
-rwxr-xr-x | tests/time-keygen.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/parallel-signatures.py b/tests/parallel-signatures.py index 200e550..abecbfc 100755 --- a/tests/parallel-signatures.py +++ b/tests/parallel-signatures.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright (c) 2016-2018, NORDUnet A/S # All rights reserved. diff --git a/tests/test-rsa.py b/tests/test-rsa.py index 39f46cd..b75ffba 100644 --- a/tests/test-rsa.py +++ b/tests/test-rsa.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ Use PyCrypto to generate test data for Cryptech ModExp core. diff --git a/tests/time-keygen.py b/tests/time-keygen.py index 14a8119..dfd1518 100755 --- a/tests/time-keygen.py +++ b/tests/time-keygen.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ Time libhal RSA key generation |