Skip to content

Commit 12d1277

Browse files
committed
Apply new directory nomenclature: for clarity and security reasons, each directory under root should be named after the identity using it and identities should be assigned distinct directories if possible
1 parent 803a41e commit 12d1277

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,10 @@ int decrypt_video(char *encrypted_video_path, char *decrypted_video_path, char *
257257
int main(int argc, char **argv)
258258
{
259259
double time;
260-
char *encrypted_video_path = "input/in_enc.h264";
261-
char *decrypted_video_path = "internal/in.h264";
262-
char *key_path = "input/key";
263-
char *iv_path = "input/iv";
260+
char *encrypted_video_path = "s3_app_input/in_enc.h264";
261+
char *decrypted_video_path = "program_internal/in.h264";
262+
char *key_path = "user_input/key";
263+
char *iv_path = "user_input/iv";
264264

265265
// Decrypt input video
266266
if (decrypt_video(encrypted_video_path, decrypted_video_path, key_path, iv_path) != 0) {

0 commit comments

Comments
 (0)