侧信道数据集

闲着没事采集了一组能量轨迹数据集,能够用来练习一下侧信道,采集状况以下:git

示波器:梦圆实验室,DSCope20github

采样率:200Mhzoop

硬件平台:arduino UNOui

使用代码以下:url

#include <AESLib.h>

void setup() {
  // put your setup code here, to run once:
//Serial.begin(57600);
pinMode(12,OUTPUT);
}

void loop() {
  
uint8_t key[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31};
char data[] = "0123456789012345";
digitalWrite(12, HIGH);
aes256_enc_single(key, data);
digitalWrite(12, LOW);
//Serial.print("encrypted:");
//Serial.println(data);
//aes256_dec_single(key, data);
//Serial.print("decrypted:");
//Serial.println(data);
delay(4);
}

mat文件变量解释:spa

CSV:原始能量轨迹code

ans:对CSV执行自相关运算   xcorr(CSV)blog

t1,t2,t3,t4,t5,t6,t7,t8,t9:粗对齐以后采集的能量段,没有彻底对齐。接口

采集方式:GND小电流耦合法,在arduino板子的GND串联30欧姆小电阻,测量压降取得ip

供电电源:dell xps13的usb接口

采集环境:正常办公室,无电磁屏蔽和吸波材料,电子设备密度参考常规办公室

下载地址:https://pan.baidu.com/s/1zSpn5SKakqwx7rSfecQuLQ 密码:ukjw

arduino的AES库:https://codeload.github.com/DavyLandman/AESLib/zip/master

相关文章
相关标签/搜索