summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/pkesk.rs
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2020-04-01 11:21:33 +0200
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2020-04-03 15:11:08 +0200
commit9fa0c1972a9f36e3a55da95d4eed44601d4a3f9f (patch)
tree5cebc2b5ea251e485737eb6f5ec1fbcb076a959a /openpgp/src/packet/pkesk.rs
parentb0dbca2064163a41f73559d787456e8bab7b5cb9 (diff)
Change function names to align to Rust naming conventions.
- Change `mark_parts_public` to `parts_into_public`, - Change `mark_parts_public_ref` to `parts_as_public`, - Change `mark_parts_secret` to `parts_into_secret`, - Change `mark_parts_secret_ref` to `parts_as_secret`, - Change `mark_parts_unspecified` to `parts_into_unspecified`, - Change `mark_parts_unspecified_ref` to `parts_as_unspecified`, - Fixes #452.
Diffstat (limited to 'openpgp/src/packet/pkesk.rs')
-rw-r--r--openpgp/src/packet/pkesk.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/openpgp/src/packet/pkesk.rs b/openpgp/src/packet/pkesk.rs
index b08dc8e2..7ab9ccbb 100644
--- a/openpgp/src/packet/pkesk.rs
+++ b/openpgp/src/packet/pkesk.rs
@@ -215,7 +215,7 @@ mod tests {
crate::tests::message("encrypted-to-testy.gpg")).unwrap();
let mut keypair =
cert.subkeys().next().unwrap()
- .key().clone().mark_parts_secret().unwrap().into_keypair().unwrap();
+ .key().clone().parts_into_secret().unwrap().into_keypair().unwrap();
let pkg = pile.descendants().skip(0).next().clone();
@@ -240,7 +240,7 @@ mod tests {
crate::tests::message("encrypted-to-testy-new.pgp")).unwrap();
let mut keypair =
cert.subkeys().next().unwrap()
- .key().clone().mark_parts_secret().unwrap().into_keypair().unwrap();
+ .key().clone().parts_into_secret().unwrap().into_keypair().unwrap();
let pkg = pile.descendants().skip(0).next().clone();
@@ -265,7 +265,7 @@ mod tests {
crate::tests::message("encrypted-to-testy-nistp256.pgp")).unwrap();
let mut keypair =
cert.subkeys().next().unwrap()
- .key().clone().mark_parts_secret().unwrap().into_keypair().unwrap();
+ .key().clone().parts_into_secret().unwrap().into_keypair().unwrap();
let pkg = pile.descendants().skip(0).next().clone();
@@ -290,7 +290,7 @@ mod tests {
crate::tests::message("encrypted-to-testy-nistp384.pgp")).unwrap();
let mut keypair =
cert.subkeys().next().unwrap()
- .key().clone().mark_parts_secret().unwrap().into_keypair().unwrap();
+ .key().clone().parts_into_secret().unwrap().into_keypair().unwrap();
let pkg = pile.descendants().skip(0).next().clone();
@@ -315,7 +315,7 @@ mod tests {
crate::tests::message("encrypted-to-testy-nistp521.pgp")).unwrap();
let mut keypair =
cert.subkeys().next().unwrap()
- .key().clone().mark_parts_secret().unwrap().into_keypair().unwrap();
+ .key().clone().parts_into_secret().unwrap().into_keypair().unwrap();
let pkg = pile.descendants().skip(0).next().clone();
@@ -376,7 +376,7 @@ mod tests {
let pkesk = PKESK3::for_recipient(SymmetricAlgorithm::AES256, &sess_key,
&key).unwrap();
let mut keypair =
- key.mark_parts_secret().unwrap().into_keypair().unwrap();
+ key.parts_into_secret().unwrap().into_keypair().unwrap();
pkesk.decrypt(&mut keypair, None).unwrap();
}
}