summaryrefslogtreecommitdiffstats
path: root/sq/src/commands/dump.rs
diff options
context:
space:
mode:
Diffstat (limited to 'sq/src/commands/dump.rs')
-rw-r--r--sq/src/commands/dump.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/sq/src/commands/dump.rs b/sq/src/commands/dump.rs
index a9aae2cc..b7c55489 100644
--- a/sq/src/commands/dump.rs
+++ b/sq/src/commands/dump.rs
@@ -349,8 +349,8 @@ impl PacketDumper {
},
mpi::PublicKey::ECDH { curve, q, hash, sym } => {
writeln!(output, "{} Curve: {}", ii, curve)?;
- writeln!(output, "{} Hash algo: {}", ii, hash)?;
- writeln!(output, "{} Symmetric algo: {}", ii,
+ writeln!(output, "{} KDF hash algo: {}", ii, hash)?;
+ writeln!(output, "{} KEK symmetric algo: {}", ii,
sym)?;
pd.dump_mpis(output, &ii, &[q.value()], &["q"])?;
},