We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59ca702 commit 68afb72Copy full SHA for 68afb72
src/utils/magic_variables.rs
@@ -62,7 +62,7 @@ async fn write_variables_magic(
62
) -> anyhow::Result<()> {
63
let stringified_kvpairs = kvpairs
64
.iter()
65
- .map(|kv| kv.value.to_string())
+ .map(|kv| kv.to_string())
66
.collect::<Vec<String>>()
67
.join("\n");
68
let msg = encrypt_to_msg(&stringified_kvpairs, &[key.try_into()?])?;
src/utils/rpgp.rs
@@ -94,7 +94,7 @@ pub fn encrypt_to_msg(
94
95
let new_msg = msg.encrypt_to_keys_seipdv1(
96
&mut rng,
97
- crypto::sym::SymmetricKeyAlgorithm::AES128,
+ crypto::sym::SymmetricKeyAlgorithm::AES256,
98
&borrowed_keys,
99
)?;
100
0 commit comments