Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add IncomingViewingKey::prepare convenience method. #424

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to Rust's notion of
## [Unreleased]

### 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
Loading