Skip to content

Instantly share code, notes, and snippets.

@timbaev
Created January 28, 2019 19:16
Show Gist options
  • Save timbaev/ea7bea157375d2cdff073edc6412b3ec to your computer and use it in GitHub Desktop.
Save timbaev/ea7bea157375d2cdff073edc6412b3ec to your computer and use it in GitHub Desktop.
/// Generate new Refresh Token
class func createRefreshToken() -> String {
let letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
return String((0 ... 40).map { _ in letters.randomElement()! })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment