Skip to content

Commit

Permalink
Update FROST.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Fiono11 authored Feb 27, 2024
1 parent 262e702 commit 7c8c2d0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions applications/FROST.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub mod frost_server {
pub fn notify_dkg_participants(poly_commit: Vec<u8>, participants_urls: Vec<Url>);

/// Verifies the polynomial commitment of a participant.
pub fn verify_poly_commit(poly_commit: Vec<u8>);
pub fn verify_poly_commit(poly_commit: Vec<u8>);

/// Broadcasts the polynomial commitment from one participant to the others.
pub fn broadcast_poly_commit(poly_commit: Vec<u8>, participants_urls: Vec<Url>);
Expand Down Expand Up @@ -104,6 +104,9 @@ module FrostClient {
// Verifies the polynomial commitment received from the server.
export function verifyPolyCommit(poly_commit: Uint8Array, participant_id: Id): boolean;

// Verifies the polynomial commitment received from the server.
export function verifyPolyCommit(poly_commit: Uint8Array, participant_id: Id): boolean;

// Sends encrypted secret shares to the server for distribution.
export function sendEncryptedSecretShares(encrypted_shares: Uint8Array[], server: Url): void;

Expand All @@ -117,10 +120,10 @@ module FrostClient {
export function computeFinalShare(verifiedShares: Uint8Array[]): void;

// Calculates its own public verification share.
export function calculatePublicVerificationShare(private_shares: Uint8Array[]): void;
export function calculateOwnPublicVerificationShare(private_shares: Uint8Array[]): void;

// Calculates the public verification share of another participant.
export function calculatePublicVerificationShare(commitments: Uint8Array[], participant_id: Id): void;
export function calculateOtherPublicVerificationShare(commitments: Uint8Array[], participant_id: Id): void;

// Calculates the group's public key.
export function calculateGroupPublicKey(commitments: Uint8Array[]): void;
Expand Down

0 comments on commit 7c8c2d0

Please sign in to comment.