]> The Tcpdump Group git mirrors - tcpdump/blob - tests/crypto.sh
NDOize safeputs() and safeputchar()
[tcpdump] / tests / crypto.sh
1 #!/bin/sh
2
3 # Only attempt OpenSSL-specific tests when compiled with the library.
4
5 if grep '^#define HAVE_LIBCRYPTO 1$' ../config.h >/dev/null
6 then
7 ./TESTonce esp1 02-sunrise-sunset-esp.pcap esp1.out '-t -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x4043434545464649494a4a4c4c4f4f515152525454575758"'
8 ./TESTonce esp2 08-sunrise-sunset-esp2.pcap esp2.out '-t -E "0x12345678@192.1.2.45 3des-cbc-hmac96:0x43434545464649494a4a4c4c4f4f51515252545457575840,0xabcdabcd@192.0.1.1 3des-cbc-hmac96:0x434545464649494a4a4c4c4f4f5151525254545757584043"'
9 ./TESTonce esp3 02-sunrise-sunset-esp.pcap esp1.out '-t -E "3des-cbc-hmac96:0x4043434545464649494a4a4c4c4f4f515152525454575758"'
10 ./TESTonce esp4 08-sunrise-sunset-esp2.pcap esp2.out '-t -E "file esp-secrets.txt"'
11 ./TESTonce esp5 08-sunrise-sunset-aes.pcap esp5.out '-t -E "file esp-secrets.txt"'
12 ./TESTonce espudp1 espudp1.pcap espudp1.out '-nnnn -t -E "file esp-secrets.txt"'
13 ./TESTonce ikev2pI2 ikev2pI2.pcap ikev2pI2.out '-t -E "file ikev2pI2-secrets.txt" -v -v -v -v'
14 else
15 FORMAT=' %-30s: TEST SKIPPED (compiled w/o OpenSSL)\n'
16 printf "$FORMAT" esp1
17 printf "$FORMAT" esp2
18 printf "$FORMAT" esp3
19 printf "$FORMAT" esp4
20 printf "$FORMAT" esp5
21 printf "$FORMAT" espudp1
22 printf "$FORMAT" ikev2pI2
23 fi