0.1.1 • Published 8 years ago

flamel v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Flamel

The philosopher's stone of data manipulation

Do some data alchemy with javascript using endless function chains:

require('flamel.js')
console.log('let\'s stir some data!'.hex().sha256().base64().aes256('mypass').base64());

Modular, extensible

add your own algorithms to the chain with a simple function:

// modules/myAlgo.js
exports.algo = function () {
  return this.toString().split('').reverse().join(''); //reverse input string
}

Full funcionality of nodeJS

The supported algorithms include all methods of the node crypto module along with custom-made infosec functions and automatically keeps up to date.

TODO

Compression, analysis

0.1.1

8 years ago

0.1.0

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago