summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-02-20 19:24:37 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-02-20 19:24:37 +0100
commit291edaec90f6ef8dd6daab96478bd7d33a0066ab (patch)
treef631d7c50c300beea776b4edbdb27ba27ef90d22 /tool
parentf8d10cf720697be099ef1e9a3d72462e50e82f28 (diff)
openpgp: Typo.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/commands/dump.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tool/src/commands/dump.rs b/tool/src/commands/dump.rs
index e8a0a970..022bfdf4 100644
--- a/tool/src/commands/dump.rs
+++ b/tool/src/commands/dump.rs
@@ -316,7 +316,7 @@ impl PacketDumper {
&[p.value(), q.value(), g.value(),
y.value()],
&["p", "q", "g", "y"])?,
- mpis::PublicKey::Elgamal { p, g, y } =>
+ mpis::PublicKey::ElGamal { p, g, y } =>
pd.dump_mpis(output, &ii,
&[p.value(), g.value(), y.value()],
&["p", "g", "y"])?,
@@ -371,7 +371,7 @@ impl PacketDumper {
mpis::SecretKeyMaterial::DSA { x } =>
pd.dump_mpis(output, &ii, &[x.value()],
&["x"])?,
- mpis::SecretKeyMaterial::Elgamal { x } =>
+ mpis::SecretKeyMaterial::ElGamal { x } =>
pd.dump_mpis(output, &ii, &[x.value()],
&["x"])?,
mpis::SecretKeyMaterial::EdDSA { scalar } =>
@@ -471,7 +471,7 @@ impl PacketDumper {
self.dump_mpis(output, &ii,
&[r.value(), s.value()],
&["r", "s"])?,
- mpis::Signature::Elgamal { r, s } =>
+ mpis::Signature::ElGamal { r, s } =>
self.dump_mpis(output, &ii,
&[r.value(), s.value()],
&["r", "s"])?,
@@ -583,7 +583,7 @@ impl PacketDumper {
self.dump_mpis(output, &ii,
&[c.value()],
&["c"])?,
- mpis::Ciphertext::Elgamal { e, c } =>
+ mpis::Ciphertext::ElGamal { e, c } =>
self.dump_mpis(output, &ii,
&[e.value(), c.value()],
&["e", "c"])?,