1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
// Copyright (c) 2022-2023 The MobileCoin Foundation
use curve25519_dalek::ristretto::CompressedRistretto;
use encdec::{Decode, Encode};
use ledger_proto::ApduStatic;
use mc_crypto_keys::CompressedRistrettoPublic;
use mc_crypto_ring_signature::{CompressedCommitment, KeyImage, ReducedTxOut, Scalar};
use crate::{
digest::{digest_ring_add_txout, digest_ring_init, digest_ring_set_blinding, digest_ring_sign},
helpers::*,
ApduError, Instruction, MOB_APDU_CLA,
};
use super::TxOnetimeKey;
/// Start a ring signing operation
///
/// ## Encoding:
/// ```text
/// 0 1 2 3
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | RING_SIZE | REAL_INDEX | RESERVED |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | SUBADDRESS_INDEX |
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | VALUE |
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// ```
///
#[derive(Clone, Debug, PartialEq, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxRingInit {
/// Size of ring to be signed
pub ring_size: u8,
/// Index of real tx_in in ring
pub real_index: u8,
/// Flags for ring init message
pub flags: TxRingInitFlags,
/// Reserved for future use (ensures next field alignment)
#[encdec(with = "arr")]
reserved: [u8; 1],
/// Subaddress of real tx_in, used for onetime_private_key recovery
pub subaddress_index: u64,
/// Ring value
pub value: u64,
/// Ring token_id
pub token_id: u64,
/// One-time private key for pre-signed inputs etc.
/// Zero if HAS_ONETIME_PRIVATE_KEY is not set
#[encdec(with = "pri_key")]
pub onetime_private_key: TxOnetimeKey,
}
impl ApduStatic for TxRingInit {
const CLA: u8 = MOB_APDU_CLA;
const INS: u8 = Instruction::TxRingInit as u8;
}
bitflags::bitflags! {
/// TxRingInit flags
pub struct TxRingInitFlags: u8 {
/// Ring contains onetime private key (used for gift codes / pre-signed outputs)
const HAS_ONETIME_PRIVATE_KEY = 1 << 0;
}
}
crate::encdec_bitflags!(TxRingInitFlags);
impl TxRingInit {
/// Create a new ring initialisation request
pub fn new(
ring_size: u8,
real_index: u8,
subaddress_index: u64,
value: u64,
token_id: u64,
onetime_private_key: Option<TxOnetimeKey>,
) -> Self {
let mut flags = TxRingInitFlags::empty();
flags.set(
TxRingInitFlags::HAS_ONETIME_PRIVATE_KEY,
onetime_private_key.is_some(),
);
let onetime_private_key = match onetime_private_key {
Some(v) => v,
None => TxOnetimeKey::default(),
};
Self {
ring_size,
real_index,
flags,
reserved: [0u8; 1],
subaddress_index,
value,
token_id,
onetime_private_key,
}
}
/// Compute hash from [TxRingInit] object
pub fn hash(&self) -> [u8; 32] {
let onetime_private_key = match self
.flags
.contains(TxRingInitFlags::HAS_ONETIME_PRIVATE_KEY)
{
true => Some(&self.onetime_private_key),
false => None,
};
digest_ring_init(
self.ring_size,
self.real_index,
&self.subaddress_index,
&self.value,
&self.token_id,
onetime_private_key,
)
}
}
/// Set blinding for ring signing
///
/// ## Encoding:
/// ```text
/// 0 1 2 3
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / BLINDING /
/// / (32-byte Ristretto Scalar) /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / OUTPUT_BLINDING /
/// / (32-byte Ristretto Scalar) /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// ```
#[derive(Clone, PartialEq, Debug, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxSetBlinding {
#[encdec(with = "scalar")]
pub blinding: Scalar,
#[encdec(with = "scalar")]
pub output_blinding: Scalar,
}
impl ApduStatic for TxSetBlinding {
const CLA: u8 = MOB_APDU_CLA;
const INS: u8 = Instruction::TxSetBlinding as u8;
}
impl TxSetBlinding {
/// Crete a new [TxSetBlinding] object
pub fn new(blinding: Scalar, output_blinding: Scalar) -> Self {
Self {
blinding,
output_blinding,
}
}
/// Compute hash from [TxSetBlinding] object
pub fn hash(&self) -> [u8; 32] {
digest_ring_set_blinding(&self.blinding, &self.output_blinding)
}
}
/// Add a TxOut to a ring signing operation
///
/// ## Encoding:
/// ```text
/// 0 1 2 3
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | RING_INDEX | RESERVED |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / TXOUT_PUBLIC_KEY /
/// / (32-byte Compressed Ristretto Public Key) /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / TXOUT_TARGET_KEY /
/// / (32-byte Compressed Ristretto Public Key) /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / COMMITMENT /
/// / (32-byte Compressed Ristretto Point) /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// ```
#[derive(Clone, PartialEq, Debug, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxAddTxOut {
/// The tx_out index in the ring
pub ring_index: u8,
/// Reserved for future use (maintains field alignment)
#[encdec(with = "arr")]
reserved: [u8; 3],
/// The tx_out.public_key field
#[encdec(with = "pt")]
pub public_key: CompressedRistrettoPublic,
/// The tx_out.target_key field
#[encdec(with = "pt")]
pub target_key: CompressedRistrettoPublic,
/// The tx_out.masked_amount.commitment field
#[encdec(with = "pt")]
pub commitment: CompressedRistrettoPublic,
}
impl ApduStatic for TxAddTxOut {
const CLA: u8 = MOB_APDU_CLA;
const INS: u8 = Instruction::TxAddTxOut as u8;
}
impl TxAddTxOut {
/// Create a new add tx out request
pub fn new(
ring_index: u8,
public_key: CompressedRistrettoPublic,
target_key: CompressedRistrettoPublic,
commitment: CompressedRistrettoPublic,
) -> Self {
Self {
ring_index,
reserved: [0u8; 3],
public_key,
target_key,
commitment,
}
}
/// Build [ReducedTxOut] from [TxAddTxOut] object
pub fn tx_out(&self) -> ReducedTxOut {
let commitment: &CompressedRistretto = self.commitment.as_ref();
ReducedTxOut {
public_key: self.public_key,
target_key: self.target_key,
commitment: CompressedCommitment { point: *commitment },
}
}
/// Compute hash of [TxAddTxOut] object
pub fn hash(&self) -> [u8; 32] {
digest_ring_add_txout(self.ring_index, &self.tx_out())
}
}
/// Execute signing operation for a completed ring (0 length APDU)
#[derive(Clone, PartialEq, Debug, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxRingSign;
impl ApduStatic for TxRingSign {
const CLA: u8 = MOB_APDU_CLA;
const INS: u8 = Instruction::TxSign as u8;
}
impl TxRingSign {
/// Compute hash of [TxRingSign] object
pub fn hash(&self) -> [u8; 32] {
digest_ring_sign()
}
}
/// Fetch a key image for a signed ring, returns [`TxKeyImage`] on success (0-byte APDU)
#[derive(Clone, PartialEq, Debug, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxGetKeyImage {}
impl ApduStatic for TxGetKeyImage {
const CLA: u8 = MOB_APDU_CLA;
const INS: u8 = Instruction::TxGetKeyImage as u8;
}
/// Key image response APDU for a signed ring
///
/// ## Encoding:
/// ```text
/// 0 1 2 3
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / KEY_IMAGE /
/// / (32-byte Compressed Ristretto Point) /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / C_ZERO /
/// / (32-byte Compressed Curve Point /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// ```
#[derive(Clone, PartialEq, Debug, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxKeyImage {
/// Key Image for signed ring
#[encdec(with = "ki")]
pub key_image: KeyImage,
/// Zero'th challenge for signed ring
#[encdec(with = "scalar")]
pub c_zero: Scalar,
}
/// Fetch a response scalar for a ring entry in a signed ring, returns [`TxResponse`] on success
///
/// ## Encoding:
/// ```text
/// 0 1 2 3
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | RING_INDEX | RESERVED |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// ```
#[derive(Clone, PartialEq, Debug, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxGetResponse {
/// Index of response to be fetched
pub ring_index: u8,
/// Reserved for future use
#[encdec(with = "arr")]
reserved: [u8; 3],
}
impl TxGetResponse {
/// Create a new TX response request
pub fn new(ring_index: u8) -> Self {
Self {
ring_index,
reserved: [0u8; 3],
}
}
}
impl ApduStatic for TxGetResponse {
const CLA: u8 = MOB_APDU_CLA;
const INS: u8 = Instruction::TxGetResponse as u8;
}
/// TX Response APDU, contains a response scalar for a given entry in
/// the signed ring.
///
/// ## Encoding:
/// ```text
/// 0 1 2 3
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | RING_INDEX | RESERVED |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// | |
/// / RESPONSE /
/// / (32-byte Ristretto Scalar) /
/// | |
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// ```
#[derive(Clone, PartialEq, Debug, Encode, Decode)]
#[encdec(error = "ApduError")]
pub struct TxResponse {
/// Index of returned response
pub ring_index: u8,
/// Reserved bytes (ensures scalar alignment)
#[encdec(with = "arr")]
reserved: [u8; 3],
/// Response scalar
#[encdec(with = "scalar")]
pub scalar: Scalar,
}
impl TxResponse {
/// Create a new tx response response message
pub fn new(ring_index: u8, scalar: Scalar) -> Self {
Self {
ring_index,
reserved: [0u8; 3],
scalar,
}
}
}
#[cfg(test)]
mod test {
use mc_crypto_ring_signature::Scalar;
use rand::{random, rngs::OsRng};
use mc_crypto_keys::{CompressedRistrettoPublic, RistrettoPrivate, RistrettoPublic};
use mc_util_from_random::FromRandom;
use super::{TxAddTxOut, TxRingInit, TxSetBlinding};
use crate::test::encode_decode_apdu;
#[test]
fn encode_decode_tx_ring_init() {
let onetime_private_key = RistrettoPrivate::from_random(&mut OsRng {});
let apdu = TxRingInit::new(
random(),
random(),
random(),
random(),
random(),
Some(onetime_private_key.into()),
);
let mut buff = [0u8; 256];
encode_decode_apdu(&mut buff, &apdu);
}
#[test]
fn encode_decode_tx_set_blinding() {
let mut b = [0u8; 256];
let t = TxSetBlinding {
blinding: Scalar::random(&mut OsRng {}),
output_blinding: Scalar::random(&mut OsRng {}),
};
encode_decode_apdu(&mut b, &t);
}
#[test]
fn encode_decode_add_txout() {
let mut b = [0u8; 256];
let public_key = RistrettoPrivate::from_random(&mut OsRng {});
let target_key = RistrettoPrivate::from_random(&mut OsRng {});
let commitment = RistrettoPrivate::from_random(&mut OsRng {});
let apdu = TxAddTxOut::new(
random(),
CompressedRistrettoPublic::from(RistrettoPublic::from(&public_key)),
CompressedRistrettoPublic::from(RistrettoPublic::from(&target_key)),
CompressedRistrettoPublic::from(RistrettoPublic::from(&commitment)),
);
let n = encode_decode_apdu(&mut b, &apdu);
assert_eq!(n, 100);
}
}