diff options
author | Joe Crayne <joe@jerkface.net> | 2018-11-25 22:26:24 -0500 |
---|---|---|
committer | Joe Crayne <joe@jerkface.net> | 2018-12-16 14:08:26 -0500 |
commit | 1177dc760f2d12c551859054323580b93f2d38d9 (patch) | |
tree | 2dcd7d5fb26f0af4594ebd484f2d3aa33bd1badc /src/Data | |
parent | dfcab14e4d593f6a51db3fa5cf61f0358dc0f280 (diff) |
ChatID is a type alias for an Ed25519 signature key.
Diffstat (limited to 'src/Data')
-rw-r--r-- | src/Data/Tox/Msg.hs | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/src/Data/Tox/Msg.hs b/src/Data/Tox/Msg.hs index d42b092b..e8c26a56 100644 --- a/src/Data/Tox/Msg.hs +++ b/src/Data/Tox/Msg.hs | |||
@@ -10,6 +10,9 @@ | |||
10 | {-# LANGUAGE TypeFamilies #-} | 10 | {-# LANGUAGE TypeFamilies #-} |
11 | module Data.Tox.Msg where | 11 | module Data.Tox.Msg where |
12 | 12 | ||
13 | import Crypto.Error | ||
14 | import qualified Crypto.PubKey.Ed25519 as Ed25519 | ||
15 | import Data.ByteArray as BA | ||
13 | import Data.ByteString as B | 16 | import Data.ByteString as B |
14 | import Data.Dependent.Sum | 17 | import Data.Dependent.Sum |
15 | import Data.Functor.Contravariant | 18 | import Data.Functor.Contravariant |
@@ -234,8 +237,28 @@ lossyness m = case msgbyte m of | |||
234 | | otherwise -> Lossless | 237 | | otherwise -> Lossless |
235 | 238 | ||
236 | 239 | ||
237 | newtype ChatID = ChatID Nonce32 | 240 | newtype ChatID = ChatID Ed25519.PublicKey |
238 | deriving (Eq,Show,Serialize,Sized) | 241 | deriving Eq |
242 | |||
243 | instance Sized ChatID where size = ConstSize 32 | ||
244 | |||
245 | instance Serialize ChatID where | ||
246 | get = do | ||
247 | bs <- getBytes 32 | ||
248 | case Ed25519.publicKey bs of | ||
249 | CryptoPassed ed -> return $ ChatID ed | ||
250 | CryptoFailed e -> fail (show e) | ||
251 | put (ChatID ed) = putByteString $ BA.convert ed | ||
252 | |||
253 | instance Read ChatID where | ||
254 | readsPrec _ s | ||
255 | | Right bs <- parseToken32 s | ||
256 | , CryptoPassed ed <- Ed25519.publicKey bs | ||
257 | = [ (ChatID ed, Prelude.drop 43 s) ] | ||
258 | | otherwise = [] | ||
259 | |||
260 | instance Show ChatID where | ||
261 | show (ChatID ed) = showToken32 ed | ||
239 | 262 | ||
240 | data InviteType = GroupInvite { groupName :: Text } | 263 | data InviteType = GroupInvite { groupName :: Text } |
241 | | AccptedInvite | 264 | | AccptedInvite |