about summary refs log tree commit diff
path: root/kittybox-rs/indieauth/src
diff options
context:
space:
mode:
Diffstat (limited to 'kittybox-rs/indieauth/src')
-rw-r--r--kittybox-rs/indieauth/src/lib.rs4
-rw-r--r--kittybox-rs/indieauth/src/pkce.rs6
2 files changed, 7 insertions, 3 deletions
diff --git a/kittybox-rs/indieauth/src/lib.rs b/kittybox-rs/indieauth/src/lib.rs
index 9408eb6..eca1102 100644
--- a/kittybox-rs/indieauth/src/lib.rs
+++ b/kittybox-rs/indieauth/src/lib.rs
@@ -145,7 +145,7 @@ pub enum GrantResponse {
         profile: Option<Profile>,
         access_token: String,
         #[serde(skip_serializing_if = "Option::is_none")]
-        expires_in: Option<usize>,
+        expires_in: Option<u64>,
         #[serde(skip_serializing_if = "Option::is_none")]
         refresh_token: Option<String>
     },
@@ -257,6 +257,8 @@ pub struct TokenRevocationRequest {
     pub token: String
 }
 
+// TODO rework in accordance with https://datatracker.ietf.org/doc/html/rfc6749#section-5.2
+// turns out I got some values wrong
 #[derive(Debug, Clone, Copy, Serialize, Deserialize)]
 #[serde(rename_all = "snake_case")]
 #[serde(tag = "error")]
diff --git a/kittybox-rs/indieauth/src/pkce.rs b/kittybox-rs/indieauth/src/pkce.rs
index 1d3c58f..6dabcc3 100644
--- a/kittybox-rs/indieauth/src/pkce.rs
+++ b/kittybox-rs/indieauth/src/pkce.rs
@@ -40,7 +40,7 @@ pub struct PKCEChallenge {
 }
 
 impl PKCEChallenge {
-    fn new(code_verifier: PKCEVerifier, method: PKCEMethod) -> Self {
+    pub fn new(code_verifier: PKCEVerifier, method: PKCEMethod) -> Self {
         Self {
             code_challenge: match method {
                 PKCEMethod::S256 => {
@@ -53,7 +53,9 @@ impl PKCEChallenge {
             method
         }
     }
-    fn verify(&self, code_verifier: PKCEVerifier) -> bool {
+
+    #[must_use]
+    pub fn verify(&self, code_verifier: PKCEVerifier) -> bool {
         Self::new(code_verifier, self.method) == *self
     }
 }