snarkvm_console_program/response/mod.rs
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
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use crate::{Identifier, ProgramID, Register, Value, ValueType, compute_function_id};
use snarkvm_console_network::Network;
use snarkvm_console_types::prelude::*;
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum OutputID<N: Network> {
/// The hash of the constant output.
Constant(Field<N>),
/// The hash of the public output.
Public(Field<N>),
/// The ciphertext hash of the private output.
Private(Field<N>),
/// The `(commitment, checksum)` tuple of the record output.
Record(Field<N>, Field<N>),
/// The hash of the external record output.
ExternalRecord(Field<N>),
/// The hash of the future output.
Future(Field<N>),
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct Response<N: Network> {
/// The output ID for the transition.
output_ids: Vec<OutputID<N>>,
/// The function outputs.
outputs: Vec<Value<N>>,
}
impl<N: Network> From<(Vec<OutputID<N>>, Vec<Value<N>>)> for Response<N> {
/// Note: This method is used to eject from a circuit.
fn from((output_ids, outputs): (Vec<OutputID<N>>, Vec<Value<N>>)) -> Self {
Self { output_ids, outputs }
}
}
impl<N: Network> Response<N> {
/// Initializes a new response.
pub fn new(
network_id: &U16<N>,
program_id: &ProgramID<N>,
function_name: &Identifier<N>,
num_inputs: usize,
tvk: &Field<N>,
tcm: &Field<N>,
outputs: Vec<Value<N>>,
output_types: &[ValueType<N>],
output_operands: &[Option<Register<N>>],
) -> Result<Self> {
// Compute the function ID.
let function_id = compute_function_id(network_id, program_id, function_name)?;
// Compute the output IDs.
let output_ids = outputs
.iter()
.zip_eq(output_types)
.zip_eq(output_operands)
.enumerate()
.map(|(index, ((output, output_type), output_register))| {
match output_type {
// For a constant output, compute the hash (using `tcm`) of the output.
ValueType::Constant(..) => {
// Ensure the output is a plaintext.
ensure!(matches!(output, Value::Plaintext(..)), "Expected a plaintext output");
// Construct the (console) output index as a field element.
let index = Field::from_u16(
u16::try_from(num_inputs + index).or_halt_with::<N>("Output index exceeds u16"),
);
// Construct the preimage as `(function ID || output || tcm || index)`.
let mut preimage = Vec::new();
preimage.push(function_id);
preimage.extend(output.to_fields()?);
preimage.push(*tcm);
preimage.push(index);
// Hash the output to a field element.
let output_hash = N::hash_psd8(&preimage)?;
// Return the output ID.
Ok(OutputID::Constant(output_hash))
}
// For a public output, compute the hash (using `tcm`) of the output.
ValueType::Public(..) => {
// Ensure the output is a plaintext.
ensure!(matches!(output, Value::Plaintext(..)), "Expected a plaintext output");
// Construct the (console) output index as a field element.
let index = Field::from_u16(
u16::try_from(num_inputs + index).or_halt_with::<N>("Output index exceeds u16"),
);
// Construct the preimage as `(function ID || output || tcm || index)`.
let mut preimage = Vec::new();
preimage.push(function_id);
preimage.extend(output.to_fields()?);
preimage.push(*tcm);
preimage.push(index);
// Hash the output to a field element.
let output_hash = N::hash_psd8(&preimage)?;
// Return the output ID.
Ok(OutputID::Public(output_hash))
}
// For a private output, compute the ciphertext (using `tvk`) and hash the ciphertext.
ValueType::Private(..) => {
// Ensure the output is a plaintext.
ensure!(matches!(output, Value::Plaintext(..)), "Expected a plaintext output");
// Construct the (console) output index as a field element.
let index = Field::from_u16(
u16::try_from(num_inputs + index).or_halt_with::<N>("Output index exceeds u16"),
);
// Compute the output view key as `Hash(function ID || tvk || index)`.
let output_view_key = N::hash_psd4(&[function_id, *tvk, index])?;
// Compute the ciphertext.
let ciphertext = match &output {
Value::Plaintext(plaintext) => plaintext.encrypt_symmetric(output_view_key)?,
// Ensure the output is a plaintext.
Value::Record(..) => bail!("Expected a plaintext output, found a record output"),
Value::Future(..) => bail!("Expected a plaintext output, found a future output"),
};
// Hash the ciphertext to a field element.
let output_hash = N::hash_psd8(&ciphertext.to_fields()?)?;
// Return the output ID.
Ok(OutputID::Private(output_hash))
}
// For a record output, compute the record commitment, and encrypt the record (using `tvk`).
ValueType::Record(record_name) => {
// Retrieve the record.
let record = match &output {
Value::Record(record) => record,
// Ensure the input is a record.
Value::Plaintext(..) => bail!("Expected a record output, found a plaintext output"),
Value::Future(..) => bail!("Expected a record output, found a future output"),
};
// Retrieve the output register.
let output_register = match output_register {
Some(output_register) => output_register,
None => bail!("Expected a register to be paired with a record output"),
};
// Compute the record commitment.
let commitment = record.to_commitment(program_id, record_name)?;
// Construct the (console) output index as a field element.
let index = Field::from_u64(output_register.locator());
// Compute the encryption randomizer as `HashToScalar(tvk || index)`.
let randomizer = N::hash_to_scalar_psd2(&[*tvk, index])?;
// Encrypt the record, using the randomizer.
let encrypted_record = record.encrypt(randomizer)?;
// Compute the record checksum, as the hash of the encrypted record.
let checksum = N::hash_bhp1024(&encrypted_record.to_bits_le())?;
// Return the output ID.
Ok(OutputID::Record(commitment, checksum))
}
// For a locator output, compute the hash (using `tvk`) of the output.
ValueType::ExternalRecord(..) => {
// Ensure the output is a record.
ensure!(matches!(output, Value::Record(..)), "Expected a record output");
// Construct the (console) output index as a field element.
let index = Field::from_u16(
u16::try_from(num_inputs + index).or_halt_with::<N>("Output index exceeds u16"),
);
// Construct the preimage as `(function ID || output || tvk || index)`.
let mut preimage = Vec::new();
preimage.push(function_id);
preimage.extend(output.to_fields()?);
preimage.push(*tvk);
preimage.push(index);
// Hash the output to a field element.
let output_hash = N::hash_psd8(&preimage)?;
// Return the output ID.
Ok(OutputID::ExternalRecord(output_hash))
}
// For a future output, compute the hash (using `tcm`) of the output.
ValueType::Future(..) => {
// Ensure the output is a future.
ensure!(matches!(output, Value::Future(..)), "Expected a future output");
// Construct the (console) output index as a field element.
let index = Field::from_u16(
u16::try_from(num_inputs + index).or_halt_with::<N>("Output index exceeds u16"),
);
// Construct the preimage as `(function ID || output || tcm || index)`.
let mut preimage = Vec::new();
preimage.push(function_id);
preimage.extend(output.to_fields()?);
preimage.push(*tcm);
preimage.push(index);
// Hash the output to a field element.
let output_hash = N::hash_psd8(&preimage)?;
// Return the output ID.
Ok(OutputID::Future(output_hash))
}
}
})
.collect::<Result<Vec<_>>>()?;
Ok(Self { output_ids, outputs })
}
/// Returns the output ID for the transition.
pub fn output_ids(&self) -> &[OutputID<N>] {
&self.output_ids
}
/// Returns the function outputs.
pub fn outputs(&self) -> &[Value<N>] {
&self.outputs
}
}