070fb9e624
Almost working, but there's a bug in the relaying. Also, made tor hidden service setup pick a random port, to make it harder to port scan. This commit was sponsored by Boyd Stephen Smith Jr. on Patreon.
14 lines
290 B
Haskell
14 lines
290 B
Haskell
{- credentials
|
|
-
|
|
- Copyright 2014 Joey Hess <id@joeyh.name>
|
|
-
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
-}
|
|
|
|
module Types.Creds where
|
|
|
|
type Creds = String -- can be any data that contains credentials
|
|
|
|
type CredPair = (Login, Password)
|
|
type Login = String
|
|
type Password = String
|