Skip to content

Commit

Permalink
Merge pull request #424 from nuttycom/ivk_prepare
Browse files Browse the repository at this point in the history
Add `IncomingViewingKey::prepare` convenience method.
  • Loading branch information
nuttycom committed Mar 25, 2024
2 parents 8cd63b3 + c6ff554 commit 2b9c9a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to Rust's notion of
## [0.8.0] - 2024-03-25

### Added
- `orchard::keys::IncomingViewingKey::prepare`
- `orchard::note::Rho`
- `orchard::action::Action::rho`
- `orchard::note_encryption::CompactAction::rho`
Expand Down
5 changes: 5 additions & 0 deletions src/keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -663,6 +663,11 @@ impl IncomingViewingKey {
pub fn address(&self, d: Diversifier) -> Address {
self.ivk.address(d)
}

/// Returns the [`PreparedIncomingViewingKey`] for this [`IncomingViewingKey`].
pub fn prepare(&self) -> PreparedIncomingViewingKey {
PreparedIncomingViewingKey::new(self)
}
}

/// An Orchard incoming viewing key that has been precomputed for trial decryption.
Expand Down

0 comments on commit 2b9c9a1

Please sign in to comment.