diff options
author | Greg Hudson <ghudson@mit.edu> | 2013-09-04 14:23:27 -0400 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2013-09-06 01:03:02 -0400 |
commit | ecd91cd350b2c3880b3f967acfcb00ac1bdac154 (patch) | |
tree | 18ec96a9b000b1ec88062459af56eb71f33646e7 /src/tests/gssapi/t_gssapi.py | |
parent | 95f6a640573076b8e68051ed4f2447be767cd2ec (diff) | |
download | krb5-ecd91cd350b2c3880b3f967acfcb00ac1bdac154.tar.gz krb5-ecd91cd350b2c3880b3f967acfcb00ac1bdac154.tar.xz krb5-ecd91cd350b2c3880b3f967acfcb00ac1bdac154.zip |
Add tests for GSS IOV and AEAD interfaces
Add a new test program t_iov.c which tests various combinations of
wrapping and unwrapping using the IOV and AEAD interfaces. Run it
with and without SPNEGO in each enctype configuration.
Diffstat (limited to 'src/tests/gssapi/t_gssapi.py')
-rwxr-xr-x | src/tests/gssapi/t_gssapi.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tests/gssapi/t_gssapi.py b/src/tests/gssapi/t_gssapi.py index 5583b0247f..2b86d3eafc 100755 --- a/src/tests/gssapi/t_gssapi.py +++ b/src/tests/gssapi/t_gssapi.py @@ -1,9 +1,12 @@ #!/usr/bin/python from k5test import * -# Test krb5 negotiation under SPNEGO for all enctype configurations. +# Test krb5 negotiation under SPNEGO for all enctype configurations. Also +# test IOV wrap/unwrap with and without SPNEGO. for realm in multipass_realms(): realm.run(['./t_spnego','p:' + realm.host_princ, realm.keytab]) + realm.run(['./t_iov', 'p:' + realm.host_princ]) + realm.run(['./t_iov', '-s', 'p:' + realm.host_princ]) ### Test acceptor name behavior. |