Posts by Moser José • 33 points
2 posts
-
0
votes0
answers39
viewsQ: Encrypt fixed-size files in Arduino with AES
I know that on Arduin it is difficult to work with files, however, how can I encrypt a file of fixed size, in Kb or Mb on Arduin using Aes or other encryption algorithm? anyone has any idea??…
-
3
votes1
answer49
viewsQ: Maximum memory consumption on linux bash using openssl with aes
#!/bin/sh SUM = 0 for i in {1..5} do t=$((/ usr / bin / time-f '% e' openssl enc -aes-128-ecb -K 1234567890 -in t -out g 1> /dev/null) 2> &1) SUM = `bc <<<" $ SUM + $ t "` done…