Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: srtp/timing

Issue 2344973002: Update libsrtp to version 2.0 (Closed)
Patch Set: Add '.' back to include_dirs Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « srtp/test/srtp_driver.c ('k') | srtp/undos.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # timing.plt
2 #
3 # gnuplot script file for plotting the output generated by srtp_driver -t
4 #
5 # David A. McGrew
6 # Cisco Systems, Inc.
7 #
8 set xrange [0:2500]
9 set term pict "Times-Roman" 9
10 #
11 # plot authentication-only data
12 #
13 set title "Authentication Only"
14 set ylabel "Megabits per second"
15 set xlabel "Octets in packet"
16 set yrange [0:2000]
17 set output "plot-auth.pict"
18 plot "timing.dat" index 0 title "HMAC SHA1" with lines, "timing.dat" index 1 tit le "TMMH/AES" with lines, "timing.dat" index 2 title "TMMH/SEAL" with lines
19 #
20 # plot encryption-only data
21 #
22 set title "Encryption Only"
23 set ylabel "Megabits per second"
24 set xlabel "Octets in packet"
25 set output "plot-enc.pict"
26 set yrange [0:1200]
27 plot "timing.dat" index 3 title "SEAL" with lines, "timing.dat" index 4 title "A ES ICM" with lines
28 #
29 # plot encryption and authentication data
30 #
31 set title "Encryption and Authentication"
32 set ylabel "Megabits per second"
33 set xlabel "Octets in packet"
34 set yrange [0:1000]
35 set output "plot-enc-auth.pict"
36 plot "timing.dat" index 5 title "TMMH/SEAL" with lines, "timing.dat" index 6 tit le "TMMH/AES" with lines, "timing.dat" index 7 title "HMAC/AES" with lines
OLDNEW
« no previous file with comments | « srtp/test/srtp_driver.c ('k') | srtp/undos.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698