mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 11:31:08 +03:00
start libtx docs (#1998)
This commit is contained in:
parent
458a980470
commit
0eec80789a
2 changed files with 136 additions and 8 deletions
|
@ -11,8 +11,10 @@
|
|||
// 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.
|
||||
//! Aggsig helper functions used in transaction creation.. should be only
|
||||
//! interface into the underlying secp library
|
||||
|
||||
//! Aggregated Signature functions used in the creation of Grin transactions.
|
||||
//! This module interfaces into the underlying
|
||||
//! [Rust Aggsig library](https://github.com/mimblewimble/rust-secp256k1-zkp/blob/master/src/aggsig.rs)
|
||||
|
||||
use keychain::{BlindingFactor, Identifier, Keychain};
|
||||
use libtx::error::{Error, ErrorKind};
|
||||
|
@ -20,14 +22,78 @@ use util::secp::key::{PublicKey, SecretKey};
|
|||
use util::secp::pedersen::Commitment;
|
||||
use util::secp::{self, aggsig, Message, Secp256k1, Signature};
|
||||
|
||||
/// exports a secure nonce guaranteed to be usable
|
||||
/// in aggsig creation
|
||||
/// Creates a new secure nonce (as a SecretKey), guaranteed to be usable during
|
||||
/// aggsig creation.
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
/// * `secp` - A Secp256k1 Context initialized for Signing
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
/// ```
|
||||
/// # extern crate grin_util as util;
|
||||
/// # extern crate grin_wallet as wallet;
|
||||
/// use wallet::libtx::aggsig;
|
||||
/// use util::secp::{ContextFlag, Secp256k1};
|
||||
/// let secp = Secp256k1::with_caps(ContextFlag::SignOnly);
|
||||
/// let secret_nonce = aggsig::create_secnonce(&secp).unwrap();
|
||||
/// ```
|
||||
/// # Remarks
|
||||
///
|
||||
/// The resulting SecretKey is guaranteed to have Jacobi symbol 1.
|
||||
|
||||
pub fn create_secnonce(secp: &Secp256k1) -> Result<SecretKey, Error> {
|
||||
let nonce = aggsig::export_secnonce_single(secp)?;
|
||||
Ok(nonce)
|
||||
}
|
||||
|
||||
/// Calculate a partial sig
|
||||
/// Calculates a partial signature given the signer's secure key,
|
||||
/// the sum of all public nonces and (optionally) the sum of all public keys.
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
/// * `secp` - A Secp256k1 Context initialized for Signing
|
||||
/// * `sec_key` - The signer's secret key
|
||||
/// * `sec_nonce` - The signer's secret nonce (the public version of which
|
||||
/// was added to the `nonce_sum` total)
|
||||
/// * `nonce_sum` - The sum of the public nonces of all signers participating
|
||||
/// in the full signature. This value is encoded in e.
|
||||
/// * `pubkey_sum` - (Optional) The sum of the public keys of all signers participating
|
||||
/// in the full signature. If included, this value is encoded in e.
|
||||
/// * `msg` - The message to sign.
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
/// ```
|
||||
/// # extern crate grin_util as util;
|
||||
/// # extern crate grin_wallet as wallet;
|
||||
/// # extern crate rand;
|
||||
/// use rand::thread_rng;
|
||||
/// use wallet::libtx::aggsig;
|
||||
/// use util::secp::key::{PublicKey, SecretKey};
|
||||
/// use util::secp::{ContextFlag, Secp256k1, Message};
|
||||
///
|
||||
/// let secp = Secp256k1::with_caps(ContextFlag::SignOnly);
|
||||
/// let secret_nonce = aggsig::create_secnonce(&secp).unwrap();
|
||||
/// let secret_key = SecretKey::new(&secp, &mut thread_rng());
|
||||
/// let pub_nonce_sum = PublicKey::from_secret_key(&secp, &secret_nonce).unwrap();
|
||||
/// // ... Add all other participating nonces
|
||||
/// let pub_key_sum = PublicKey::from_secret_key(&secp, &secret_key).unwrap();
|
||||
/// // ... Add all other participating keys
|
||||
/// let mut msg_bytes = [0; 32];
|
||||
/// // ... Encode message
|
||||
/// let message = Message::from_slice(&msg_bytes).unwrap();
|
||||
/// let sig_part = aggsig::calculate_partial_sig(
|
||||
/// &secp,
|
||||
/// &secret_key,
|
||||
/// &secret_nonce,
|
||||
/// &pub_nonce_sum,
|
||||
/// Some(&pub_key_sum),
|
||||
/// &message,
|
||||
///).unwrap();
|
||||
/// ```
|
||||
|
||||
pub fn calculate_partial_sig(
|
||||
secp: &Secp256k1,
|
||||
sec_key: &SecretKey,
|
||||
|
@ -50,7 +116,69 @@ pub fn calculate_partial_sig(
|
|||
Ok(sig)
|
||||
}
|
||||
|
||||
/// Verifies a partial sig given all public nonces used in the round
|
||||
/// Verifies a partial signature from a public key. All nonce and public
|
||||
/// key sum values must be identical to those provided in the call to
|
||||
/// [`calculate_partial_sig`](fn.calculate_partial_sig.html). Returns
|
||||
/// `Result::Ok` if the signature is valid, or a Signature
|
||||
/// [ErrorKind](../enum.ErrorKind.html) otherwise
|
||||
///
|
||||
/// # Arguments
|
||||
///
|
||||
/// * `secp` - A Secp256k1 Context initialized for Validation
|
||||
/// * `sig` - The signature to validate, created via a call to
|
||||
/// [`calculate_partial_sig`](fn.calculate_partial_sig.html)
|
||||
/// * `pub_nonce_sum` - The sum of the public nonces of all signers participating
|
||||
/// in the full signature. This value is encoded in e.
|
||||
/// * `pubkey` - Corresponding Public Key of the private key used to sign the message.
|
||||
/// was added to the `nonce_sum` total)
|
||||
/// * `pubkey_sum` - (Optional) The sum of the public keys of all signers participating
|
||||
/// in the full signature. If included, this value is encoded in e.
|
||||
/// * `msg` - The message to verify.
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
/// ```
|
||||
/// # extern crate grin_util as util;
|
||||
/// # extern crate grin_wallet as wallet;
|
||||
/// # extern crate rand;
|
||||
/// use rand::thread_rng;
|
||||
/// use wallet::libtx::aggsig;
|
||||
/// use util::secp::key::{PublicKey, SecretKey};
|
||||
/// use util::secp::{ContextFlag, Secp256k1, Message};
|
||||
///
|
||||
/// let secp = Secp256k1::with_caps(ContextFlag::Full);
|
||||
/// let secret_nonce = aggsig::create_secnonce(&secp).unwrap();
|
||||
/// let secret_key = SecretKey::new(&secp, &mut thread_rng());
|
||||
/// let pub_nonce_sum = PublicKey::from_secret_key(&secp, &secret_nonce).unwrap();
|
||||
/// // ... Add all other participating nonces
|
||||
/// let pub_key_sum = PublicKey::from_secret_key(&secp, &secret_key).unwrap();
|
||||
/// // ... Add all other participating keys
|
||||
/// let mut msg_bytes = [0; 32];
|
||||
/// // ... Encode message
|
||||
/// let message = Message::from_slice(&msg_bytes).unwrap();
|
||||
/// let sig_part = aggsig::calculate_partial_sig(
|
||||
/// &secp,
|
||||
/// &secret_key,
|
||||
/// &secret_nonce,
|
||||
/// &pub_nonce_sum,
|
||||
/// Some(&pub_key_sum),
|
||||
/// &message,
|
||||
///).unwrap();
|
||||
///
|
||||
/// // Now verify the signature, ensuring the same values used to create
|
||||
/// // the signature are provided:
|
||||
/// let public_key = PublicKey::from_secret_key(&secp, &secret_key).unwrap();
|
||||
///
|
||||
/// let result = aggsig::verify_partial_sig(
|
||||
/// &secp,
|
||||
/// &sig_part,
|
||||
/// &pub_nonce_sum,
|
||||
/// &public_key,
|
||||
/// Some(&pub_key_sum),
|
||||
/// &message,
|
||||
///);
|
||||
/// ```
|
||||
|
||||
pub fn verify_partial_sig(
|
||||
secp: &Secp256k1,
|
||||
sig: &Signature,
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
//! Wallet lib... should be used by clients to build wallets and
|
||||
//! encapsulate all functions needed to build transactions and operate a wallet
|
||||
//! Library containing lower-level transaction building functions needed by
|
||||
//! all wallets.
|
||||
|
||||
#![deny(non_upper_case_globals)]
|
||||
#![deny(non_camel_case_types)]
|
||||
|
|
Loading…
Reference in a new issue