ruma_identity_service_api/keys/
get_public_key.rs
1pub mod v2 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata,
13 third_party_invite::IdentityServerBase64PublicKey,
14 OwnedServerSigningKeyId,
15 };
16
17 const METADATA: Metadata = metadata! {
18 method: GET,
19 rate_limited: false,
20 authentication: None,
21 history: {
22 1.0 => "/_matrix/identity/v2/pubkey/:key_id",
23 }
24 };
25
26 #[request]
28 pub struct Request {
29 #[ruma_api(path)]
31 pub key_id: OwnedServerSigningKeyId,
32 }
33
34 #[response]
36 pub struct Response {
37 pub public_key: IdentityServerBase64PublicKey,
39 }
40
41 impl Request {
42 pub fn new(key_id: OwnedServerSigningKeyId) -> Self {
44 Self { key_id }
45 }
46 }
47
48 impl Response {
49 pub fn new(public_key: IdentityServerBase64PublicKey) -> Self {
51 Self { public_key }
52 }
53 }
54}