1//! Endpoints to look up Matrix IDs bound to 3PIDs.
23use ruma_common::serde::StringEnum;
45use crate::PrivOwnedStr;
67pub mod get_hash_parameters;
8pub mod lookup_3pid;
910/// The algorithms that can be used to hash the identifiers used for lookup, as defined in the
11/// Matrix Spec.
12///
13/// This type can hold an arbitrary string. To build this with a custom value, convert it from a
14/// string with `::from()` / `.into()`. To check for values that are not available as a documented
15/// variant here, use its string representation, obtained through [`.as_str()`](Self::as_str()).
16#[derive(Clone, PartialEq, Eq, StringEnum)]
17#[non_exhaustive]
18#[ruma_enum(rename_all = "snake_case")]
19pub enum IdentifierHashingAlgorithm {
20/// The SHA-256 hashing algorithm.
21Sha256,
2223/// No algorithm is used, and identifier strings are directly used for lookup.
24None,
2526#[doc(hidden)]
27_Custom(PrivOwnedStr),
28}
2930#[cfg(test)]
31mod tests {
32use super::IdentifierHashingAlgorithm;
3334#[test]
35fn parse_identifier_hashing_algorithm() {
36assert_eq!(IdentifierHashingAlgorithm::from("sha256"), IdentifierHashingAlgorithm::Sha256);
37assert_eq!(IdentifierHashingAlgorithm::from("none"), IdentifierHashingAlgorithm::None);
38 }
39}