JamoCA / CUID2-For-ColdFusion

A ColdFusion / CFML port of the Cuid2 library by Eric Elliott.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CUID2 for ColdFusion

by Ben Nadel

This is a ColdFusion / CFML port of the Cuid2 token generator created by Eric Elliott. Cuid2 is an evolution of the Cuid library (for which I also have a ColdFusion port) that is intended to address some security issues.

Each Cuid token starts with a letter and is a consistent, configured length between 24 (default) and 34 characters.

The Cuid library for ColdFusion is thread safe and is intended to be instantiated once within an application and then cached for future usage. The Cuid library exposes one public method, .createCuid(), which will generate and return your Cuid token:

<cfscript>

	// Cachced reference to the CUID library.
	cuid2 = new lib.Cuid2();

	writeDump({ token: cuid2.createCuid() });
	writeDump({ token: cuid2.createCuid() });
	writeDump({ token: cuid2.createCuid() });
	writeDump({ token: cuid2.createCuid() });

</cfscript>

Running the above ColdFusion code will produce the following output:

token: uem955pnse56id49y6bcmjz8
token: ek9lgqi0mfkh9wmxnb6rvzuc
token: lycfyvl0dlspi0us6smqkkr0
token: x0hhypk7l7k4hga8newn4gnw

The Cuid2.cfc ColdFusion component can be instantiated with two optional arguments:

new Cuid2( [ length [, fingerprint ] ] )

  • length - Numeric: The length of the generated token. Defaults to 24 but can be anything between 24 and 32.

  • fingerprint - String: The machine fingerprint. This is provided as an additional source of entropy. It defaults to the name of the JVM process as reported by the ManagementFactory Runtime MX Bean.

Known Issues

Eric Elliott uses the SHA3-256 hashing algorithm in order to reduce the various sources of entropy down into a single token. Unfortunately, the SHA3 algorithms weren't available in Java until version 9. As such, I'm using the SHA-256 hashing algorithm. I don't know what kind of impact this will have on the security; but, I believe the SHA-256 algorithm to still be a commonly used and secure algorithm. I could always make this a configurable property of the ColdFusion component.

Random Distribution

Under the hood, the Cuid2.cfc ColdFusion component generates random values using the randRange() built-in function with the sha1prng algorithm. With over 1,000,000 keys, we can see that this randomness is well distributed into buckets:

About

A ColdFusion / CFML port of the Cuid2 library by Eric Elliott.


Languages

Language:ColdFusion 100.0%