aboutsummaryrefslogtreecommitdiff
path: root/mod/jwt.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2024-02-27 11:15:42 +0200
committerFrancois Kritzinger <francois@codesynthesis.com>2024-10-15 09:05:27 +0200
commitc9bfe5a90e4ba2d873634562a317dd10a6b2ec83 (patch)
tree1e4d78f9a356dc1bf314fbce48154c3c915377e2 /mod/jwt.hxx
parentc0ceb2df3bcd68047fa516fcd04997938d754694 (diff)
Review
Diffstat (limited to 'mod/jwt.hxx')
-rw-r--r--mod/jwt.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/jwt.hxx b/mod/jwt.hxx
index 550649f..97be0e9 100644
--- a/mod/jwt.hxx
+++ b/mod/jwt.hxx
@@ -30,11 +30,11 @@ namespace brep
// Return the token or throw std::system_error in case of an error.
//
string
- gen_jwt (const options::openssl_options&,
- const path& private_key,
- const string& issuer,
- const std::chrono::seconds& validity_period,
- const std::chrono::seconds& backdate = std::chrono::seconds (60));
+ generate_jwt (const options::openssl_options&,
+ const path& private_key,
+ const string& issuer,
+ const std::chrono::seconds& validity_period,
+ const std::chrono::seconds& backdate = std::chrono::seconds (60));
}
#endif