From 6c53242b64fcd167d1a7016d6332e7a29e20d4cd Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Mon, 26 Jun 2023 07:52:37 +0100 Subject: record encryption (#1058) * record encryption * move paserk impl * implicit assertions * move wrapped cek * add another test * use host * undo stray change * more tests and docs * fmt * Update atuin-client/src/record/encryption.rs Co-authored-by: Matteo Martellini * Update atuin-client/src/record/encryption.rs Co-authored-by: Matteo Martellini * typo --------- Co-authored-by: Matteo Martellini --- .../record-migrations/20230619235421_add_content_encrytion_key.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql (limited to 'atuin-client/record-migrations') diff --git a/atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql b/atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql new file mode 100644 index 00000000..86bf6844 --- /dev/null +++ b/atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql @@ -0,0 +1,3 @@ +-- store content encryption keys in the record +alter table records + add column cek text; -- cgit v1.3.1