Skip to content

Commit

Permalink
Update keychain.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
mm9942 authored Jan 22, 2024
1 parent 0a5f460 commit 0ed6373
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/keychain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ impl fmt::Display for KeychainError {
impl Error for KeychainError {}

pub struct Keychain {
public_key: kyber1024::PublicKey,
secret_key: kyber1024::SecretKey,
shared_secret: kyber1024::SharedSecret,
ciphertext: kyber1024::Ciphertext,
pub public_key: kyber1024::PublicKey,
pub secret_key: kyber1024::SecretKey,
pub shared_secret: kyber1024::SharedSecret,
pub ciphertext: kyber1024::Ciphertext,
}

impl Keychain {
Expand Down

0 comments on commit 0ed6373

Please sign in to comment.