aboutsummaryrefslogtreecommitdiffstats
path: root/times/x86/des3s.cpp
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-08-28 17:49:30 -0400
committerRich Salz <rsalz@openssl.org>2015-08-30 16:40:30 -0400
commit9db0c91c39fb548c36d6c3c944f50d4c068eefb7 (patch)
tree6b4f77948be9f617bee0cfc3329051d0a5bc98b5 /times/x86/des3s.cpp
parent1f003251ffffc2573d5a879661d6c6ccb8cc40e4 (diff)
downloadopenssl-9db0c91c39fb548c36d6c3c944f50d4c068eefb7.tar.gz
Remove the "times" directory.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'times/x86/des3s.cpp')
-rw-r--r--times/x86/des3s.cpp67
1 files changed, 0 insertions, 67 deletions
diff --git a/times/x86/des3s.cpp b/times/x86/des3s.cpp
deleted file mode 100644
index cd2b1126f1..0000000000
--- a/times/x86/des3s.cpp
+++ /dev/null
@@ -1,67 +0,0 @@
-//
-// gettsc.inl
-//
-// gives access to the Pentium's (secret) cycle counter
-//
-// This software was written by Leonard Janke (janke@unixg.ubc.ca)
-// in 1996-7 and is entered, by him, into the public domain.
-
-#if defined(__WATCOMC__)
-void GetTSC(unsigned long&);
-#pragma aux GetTSC = 0x0f 0x31 "mov [edi], eax" parm [edi] modify [edx eax];
-#elif defined(__GNUC__)
-inline
-void GetTSC(unsigned long& tsc)
-{
- asm volatile(".byte 15, 49\n\t"
- : "=eax" (tsc)
- :
- : "%edx", "%eax");
-}
-#elif defined(_MSC_VER)
-inline
-void GetTSC(unsigned long& tsc)
-{
- unsigned long a;
- __asm _emit 0fh
- __asm _emit 31h
- __asm mov a, eax;
- tsc=a;
-}
-#endif
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <openssl/des.h>
-
-void main(int argc,char *argv[])
- {
- des_key_schedule key1,key2,key3;
- unsigned long s1,s2,e1,e2;
- unsigned long data[2];
- int i,j;
-
- for (j=0; j<6; j++)
- {
- for (i=0; i<1000; i++) /**/
- {
- des_encrypt3(&data[0],key1,key2,key3);
- GetTSC(s1);
- des_encrypt3(&data[0],key1,key2,key3);
- des_encrypt3(&data[0],key1,key2,key3);
- des_encrypt3(&data[0],key1,key2,key3);
- GetTSC(e1);
- GetTSC(s2);
- des_encrypt3(&data[0],key1,key2,key3);
- des_encrypt3(&data[0],key1,key2,key3);
- des_encrypt3(&data[0],key1,key2,key3);
- des_encrypt3(&data[0],key1,key2,key3);
- GetTSC(e2);
- des_encrypt3(&data[0],key1,key2,key3);
- }
-
- printf("des3 %d %d (%d)\n",
- e1-s1,e2-s2,((e2-s2)-(e1-s1)));
- }
- }
-