cipherstash-client 0.12.5

The official CipherStash SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Just a place to keep all of the default config values together.
//! We'll be thankful when we have to change one!

use super::idp_provider::IdpProvider;

pub(super) static DEFAULT_VITUR_HOST: &str = "https://ap-southeast-2.aws.viturhosted.net";
pub(super) static DEFAULT_CONSOLE_BASE_URL: &str = "https://console-api.stashdata.net";
pub(super) static DEFAULT_MANAGEMENT_BASE_URL: &str = "https://console-api.stashdata.net";
pub(super) static DEFAULT_CONSOLE_IDP_AUDIENCE: &str = "https://console-api.stashdata.net";
pub(super) static DEFAULT_CONSOLE_IDP_BASE_URL: &str = "https://auth.cipherstash.com";
pub(super) static DEFAULT_CONSOLE_IDP_CLIENT_ID: &str = "CtY9DNGongoSvZaAwbb6sw0Hr7Gl7pg7";
pub(super) static DEFAULT_CONSOLE_IDP_PROVIDER: IdpProvider = IdpProvider::Auth0;
pub(super) static DEFAULT_CTS_BASE_URL: &str = "https://ap-southeast-2.aws.auth.viturhosted.net";

// Used for checking whether the management URL is pointing to a CipherStash hosted instance
pub(super) static DEFAULT_STASHDATA_DOMAIN: &str = "console-api.stashdata.net";