Skip to content

Instantly share code, notes, and snippets.

@djspiewak
Created October 17, 2012 22:24
Show Gist options
  • Save djspiewak/3908720 to your computer and use it in GitHub Desktop.
Save djspiewak/3908720 to your computer and use it in GitHub Desktop.
trait AuthComponent extends StorageComponent {
def authenticate(id: Int, hash: Vector[Byte]): Boolean =
retrieveUser(id) map { _.hash == hash } getOrElse false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment