From 17eeb741b2cdc63bce571606dc5a3f508bae64f2 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 20 Feb 2023 12:44:03 +0000 Subject: [PATCH] after move data to new directory, update runner-script to match --- crypto/chacha20/chacha20.sh | 8 ++++---- crypto/chacha20/{ => data}/chacha20.cipher | Bin crypto/chacha20/{ => data}/chacha20.iv | 0 crypto/chacha20/{ => data}/chacha20.key | 0 crypto/chacha20/{ => data}/chacha20.plain | Bin 5 files changed, 4 insertions(+), 4 deletions(-) rename crypto/chacha20/{ => data}/chacha20.cipher (100%) rename crypto/chacha20/{ => data}/chacha20.iv (100%) rename crypto/chacha20/{ => data}/chacha20.key (100%) rename crypto/chacha20/{ => data}/chacha20.plain (100%) diff --git a/crypto/chacha20/chacha20.sh b/crypto/chacha20/chacha20.sh index 5fb46581..b12de2fa 100755 --- a/crypto/chacha20/chacha20.sh +++ b/crypto/chacha20/chacha20.sh @@ -4,10 +4,10 @@ pypowersim -g chacha20.gpr \ -s common.spr \ -p 0x20000000 \ - -l ./chacha20.key:0x600000 \ - -l ./chacha20.iv:0x700000 \ - -l ./chacha20.cipher:0x800000 \ - -l ./chacha20.plain:0x900000 \ + -l ./data/chacha20.key:0x600000 \ + -l ./data/chacha20.iv:0x700000 \ + -l ./data/chacha20.cipher:0x800000 \ + -l ./data/chacha20.plain:0x900000 \ -d ./chacha20.out:0x500000:128 \ -i chacha20test.bin #cmp ${2} data/audio/mp3/mp3_0_data/samples${1} diff --git a/crypto/chacha20/chacha20.cipher b/crypto/chacha20/data/chacha20.cipher similarity index 100% rename from crypto/chacha20/chacha20.cipher rename to crypto/chacha20/data/chacha20.cipher diff --git a/crypto/chacha20/chacha20.iv b/crypto/chacha20/data/chacha20.iv similarity index 100% rename from crypto/chacha20/chacha20.iv rename to crypto/chacha20/data/chacha20.iv diff --git a/crypto/chacha20/chacha20.key b/crypto/chacha20/data/chacha20.key similarity index 100% rename from crypto/chacha20/chacha20.key rename to crypto/chacha20/data/chacha20.key diff --git a/crypto/chacha20/chacha20.plain b/crypto/chacha20/data/chacha20.plain similarity index 100% rename from crypto/chacha20/chacha20.plain rename to crypto/chacha20/data/chacha20.plain -- 2.30.2