mucipher: A library to produce simple ciphers for use with lambdabot.

[ codec, library ] [ Propose Tags ]

To use MuCipher, first import Codec.MuCipher, then pick something to say. Then use showCipher or printCipher to see how to hide the message. After the message is ciphered, it can be deciphered by running it any Haskell interpreter, like Hugs or lambdabot.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.5.0, 0.6.0
Change log ChangeLog
Dependencies base [details]
License LicenseRef-GPL
Copyright 2008 Andrew Robbins
Author Andrew Robbins <and_j_rob@yahoo.com>
Maintainer Andrew Robbins <and_j_rob@yahoo.com>
Category Codec
Uploaded by AndrewRobbins at 2008-11-12T07:48:57Z
Distributions NixOS:0.6.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1931 total (11 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for mucipher-0.6.0

[back to package description]
This is MuCipher.

MuCipher is a small library intended for ciphering short bits of text
in such a way that they can only be decided by running them in any
Haskell interpreter.

Example

	$ ghci
	Prelude> import Codec.MuCipher

	Codec.MuCipher> printCipher "Hello World"
	showIntAtBase 8 (" HWdelor"!!) 1706569195 ""

	Codec.MuCipher>

Have Fun!