Skip to main content

zkgroup/
api.rs

1//
2// Copyright 2020 Signal Messenger, LLC.
3// SPDX-License-Identifier: AGPL-3.0-only
4//
5
6pub mod auth;
7pub mod avatars;
8pub mod backups;
9pub mod call_links;
10pub mod donations;
11mod endorsement_expiration;
12pub mod groups;
13pub mod profiles;
14pub mod receipts;
15
16pub mod generic_server_params;
17pub mod server_params;
18pub mod zk_credential_key;
19
20pub use server_params::{
21    EndorsementPublicKey, EndorsementServerRootKeyPair, ServerPublicParams, ServerSecretParams,
22};