Turnstile
Turnstile copied to clipboard
An authentication framework for Swift.
When running in Linux with Swift version 3.0.2 after receiving a few requests to my Vapor server (perhaps in quick succession) I get the following fatal error: `fatal error: Transfer...
In Swift3 inheriting from "Subject" displays the following error: > Cannot inherit from non-open class 'Subject' outside of its defining module To fix it the Subject class must be set...
Took the liberty of adding 'throws' to both `destroySession` and `createSession`. If you disagree with this, feel free to close and do whatever you think is best. FYI, my use...
As I was writing my implementation of the protocol `SessionManager`, I realized I needed the `createSession` to be able to throw errors. After I create my session, I need to...
Attempting to use the `redirect_uri` parameter in `getLoginLink` does not percent encode the query on Linux. This is likely a `corelibs-foundation` issue.
I'm not happy with the code quality of the BCrypt implementation I imported. This is one of the few BCrypt implementations in Swift (thanks @joannis for porting @meanjoe45's Swift 1...