Skip to content

Commit

Permalink
remove irrelevant comment
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Nov 25, 2024
1 parent da1d30a commit 4d3e4cd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rwf/src/crypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ pub fn random_string(n: usize) -> String {
/// let token = csrf_token("1234").unwrap();
/// ```
pub fn csrf_token(session_id: &str) -> Result<String, Error> {
// Our encryption is salted, re-using some known plain text isn't an issue.
let token = format!(
"{}_{}",
OffsetDateTime::now_utc().unix_timestamp(),
Expand Down

0 comments on commit 4d3e4cd

Please sign in to comment.