Skip to content

v0.2.0.0

Latest
Compare
Choose a tag to compare
@oscar-h64 oscar-h64 released this 01 Jul 20:08
· 1 commit to master since this release
4949171

Changelog:

  • authenticate function now returns MonadIO m => m PamRetCode rather than IO (Either Int ())
  • authSuccess :: PamRetCode -> Bool added which checks if the given PamRetCode is PamSuccess or not
  • whenSuccess :: MonadIO m => PamRetCode -> m PamRetCode -> m PamRetCode added, which returns the second argument if the given response code is PamSuccess, otherwise it returns the given response code (useful for continuing only if the PAM action succeeded).
  • pamCodeToMessage, pamCodeToCDefine and pamCodeDetails now take a PamRetCode rather than an Int
  • checkAccount function has now been implemented
  • Switched to PVP versioning
  • Some documentation added