Skip to content

Instantly share code, notes, and snippets.

View Maru1337's full-sized avatar

uiedsx Maru1337

View GitHub Profile
@Maru1337
Maru1337 / SockEncrypted.hs
Last active October 3, 2016 06:34
My simple module that I use for send/recv xor-encrypted data via sockets. #haskell #socket #xor
{-# LANGUAGE OverloadedStrings #-}
module SockEncrypted
( SockEnc (..)
, nc2
, chunksof
, conn2
, recvconn
, SockAddr
, EncSock
) where