From: hn Date: Wed, 25 Jul 2018 12:32:19 +0000 (+0200) Subject: Merge branch 'master' of ssh://info.iut-bm.univ-fcomte.fr/Cipher_code X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/Cipher_code.git/commitdiff_plain/fb1c4ba527de0eaf2f035d1124b53f8efa7dfcc8?hp=7c98efa79737de9ab1562b4cc33bbbe7d1178bba Merge branch 'master' of ssh://info.iut-bm.univ-fcomte.fr/Cipher_code --- diff --git a/OneRoundIoT/execution_opi.py b/OneRoundIoT/execution_opi.py deleted file mode 100644 index 7cc4cc8..0000000 --- a/OneRoundIoT/execution_opi.py +++ /dev/null @@ -1,42 +0,0 @@ -import matplotlib.pyplot as plt -import numpy as np -import pandas as pd -from ggplot import * - -open=pd.read_csv("execution_openssl_rpi3.txt",sep='\t',header=None) -one=pd.read_csv("execution_oneround_rpi3.txt",sep='\t',header=None) - - -open=open.drop(open.columns[[4,5]], axis=1) -one=one.drop(one.columns[[0,4,5]], axis=1) - -open.columns = ["Buffer","OpenSSL enc CBC","OpenSSL dec CBC", "OpenSSL (en|de)c CTR"] - -one.columns=["OneRound enc DECB", "OneRound dec DECB", "OneRound (en|de)c CTR"] - -print(one) -print(open) - -res=pd.concat([open,one],axis=1) -#print(res) - -res2 = pd.melt(res, id_vars=['Buffer']) - -print(res2) - - -print(ggplot(res2,aes("Buffer","value")) + \ - geom_line(aes(colour="variable")) + \ -# geom_line(color='coral') + \ - scale_x_continuous("Buffer size",trans="log10") + \ - scale_y_continuous("Bytes per second",trans="log10",breaks=[1e7,2e8,1e7])) -# theme(axis_text=element_text(size=20, color='green'), x_axis_text=element_text(angle=45)) +\ - - -# annotation_logticks()) - #scale_x_date(breaks=date_breaks('36 months'), labels='%Y') + \ -# scale_y_continuous(labels='millions')) - - - #theme(legend.position="top") - # geom_line(aes(colour="Legend"))) +\