zcash-android-wallet-sdk/sdk-lib/src/main/java/cash/z/ecc/android/sdk/model/UnifiedSpendingKey.kt

53 lines
2.1 KiB
Kotlin
Raw Normal View History

package cash.z.ecc.android.sdk.model
import cash.z.ecc.android.sdk.jni.RustBackend
/**
* A [ZIP 316](https://zips.z.cash/zip-0316) Unified Spending Key.
*
* This is the spend authority for an account under the wallet's seed.
*
* An instance of this class contains all of the per-pool spending keys that could be
* derived at the time of its creation. As such, it is not suitable for long-term storage,
* export/import, or backup purposes.
*/
data class UnifiedSpendingKey internal constructor(
2022-10-06 10:44:34 -07:00
val account: Account,
/**
* The binary encoding of the [ZIP 316](https://zips.z.cash/zip-0316) Unified Spending
* Key for [account].
*
* This encoding **MUST NOT** be exposed to users. It is an internal encoding that is
* inherently unstable, and only intended to be passed between the SDK and the storage
* backend. Wallets **MUST NOT** allow this encoding to be exported or imported.
*/
internal val bytes: FirstClassByteArray
) {
// Override to prevent leaking key to logs
override fun toString() = "UnifiedSpendingKey(account=$account)"
fun copyBytes() = bytes.byteArray.copyOf()
companion object {
2022-10-06 10:44:34 -07:00
/**
* This method may fail if the [bytes] no longer represent a valid key. A key could become invalid due to
* network upgrades or other internal changes. If a non-successful result is returned, clients are expected
* to use [DerivationTool.deriveUnifiedSpendingKey] to regenerate the key from the seed.
*
* @return A validated UnifiedSpendingKey.
*/
suspend fun new(account: Account, bytes: ByteArray): Result<UnifiedSpendingKey> {
val bytesCopy = bytes.copyOf()
RustBackend.rustLibraryLoader.load()
2022-10-06 10:44:34 -07:00
return runCatching {
// We can ignore the Boolean returned from this, because if an error
// occurs the Rust side will throw.
RustBackend.validateUnifiedSpendingKey(bytesCopy)
2022-10-06 10:44:34 -07:00
UnifiedSpendingKey(account, FirstClassByteArray(bytesCopy))
}
}
}
}