npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

miyaguchipreneel

v1.1.4

Published

JavaScript implementation for MiyaguchiPreneel compression function

Downloads

19

Readme

MiyaguchiPreneel

JS Implementation for MiyaguchiPreneel compression function. The MiyaguchiPreneel compression function is a one way cryptographic function built from a symmetric cryptographic algorythm. At present day, this compression function is secure and a cryptanalysis providing collisions is not known.

Install

npm i miyaguchipreneel

Usage

Basic usage is through the following code.

const MP = require("miyaguchipreneel");
...
var mp = new MP();
var bufferMsg = Buffer.from("A message to get hash on with AES-ECB !");
var bufferIv0 = Buffer.from("00000000000000000000000000000000", "hex");
const bufferHash = mp.comp(bufferIv0, bufferMsg).toString("hex");

// Expected hash is '11b484254a81fb845c7bda23bd0bf321'
console.log("AES-ECB Hash of message is: '" + mp.comp(bufferIv0, bufferMsg).toString('hex') + "'");

However, the constructor accept the following arguments:

    function MiyaguchiPreneel(enc, key, padding, hbits); 
  • enc : Parameter for providing the symmetric crypto algorythm used for generating the MiyaguchiPreneel compressor

  • key : Parameter for providing the Key Derivation Function used for pre-processing the key used at the symmetric crypto algo used.

  • padding : Parameter for providing the padding function used when a block size to cipher is lower to the block size required by the symmetric crypto algo.

  • hbits : The size in bits of a crypto block used by the symmetric crypto algo.

The following code (coming from tests) provides an example of some specific usage of this implementation.

The first is an instanciation of MP with the ident as a encryption function.

	    var mp = new MP((k, v) => {return(v);});

The second id an instanciation of MP with the revert function as KDF.

	    var mp = new MP(
		undefined,
		(k) =>
		{
		    var newk = Buffer.alloc(k.length, 0);
		    for (var i = 0; i < k.length; i++)
			newk[i] = k[k.length -1 -i];
		    return(newk);
		}
	    );

I'll let you, as an exercise, write instanciation for using PKCS#1 v1.5 padding and another one for PKCS#1 OAEP.

           Have Fun !!

I'll describe the rest of the API in further doc changes.

Test

You can launch tests by using jest command:

rcoscali@Ubuntu-22:~/Documents/MiyaguchiPreneel$ jest
 PASS  ./mp.test.js
  ✓ MiyaguchiPreneel instanciation: properties (3 ms)
  ✓ MiyaguchiPreneel instanciation: enc_func method (2 ms)
  ✓ MiyaguchiPreneel instanciation: custom enc_func method
  ✓ MiyaguchiPreneel instanciation: key_func method
  ✓ MiyaguchiPreneel instanciation: custom key_func method (1 ms)
  ✓ MiyaguchiPreneel instanciation: pad_func method (2 ms)
  ✓ MiyaguchiPreneel instanciation: custom pad_func method (1 ms)
  ✓ MiyaguchiPreneel instanciation: bxor method (3 ms)
  ✓ MiyaguchiPreneel instanciation: comp_step method (1 ms)
  ✓ MiyaguchiPreneel instanciation: comp method (4 ms)

Test Suites: 1 passed, 1 total
Tests:       10 passed, 10 total
Snapshots:   0 total
Time:        0.521 s, estimated 1 s
Ran all test suites.
rcoscali@Ubuntu-22:~/Documents/MiyaguchiPreneel$