feat(core): add derive_master_key_raw + RecoveryQr error variant

This commit is contained in:
adlee-was-taken
2026-05-03 20:51:29 -04:00
parent 8739f1f67b
commit 04142dc116
2 changed files with 21 additions and 0 deletions

View File

@@ -119,6 +119,10 @@ pub enum RelicarioError {
/// immediately. Use TOTP instead.
#[error("HOTP is not supported: counter persistence requires vault save after each use")]
HotpNotSupported,
/// Recovery QR generation or parsing failed.
#[error("recovery QR: {0}")]
RecoveryQr(String),
}
/// Crate-wide result alias, reducing boilerplate in function signatures.