Skip to content

Stupid Algorithm for Password Hashing (Java)

License

Notifications You must be signed in to change notification settings

socram8888/saph-java

Repository files navigation

Saph for Java

Saph is the Stupid Algorithm for Password Hashing. This is the Java implementation.

For more information about Saph, go to its specification.

Usage

The class pet.orca.saph.Saph contains the implementation. It may be used as follows:

Saph saph = new Saph();
saph.add("pepper");
saph.add("username");
saph.add("password");
byte[] hash = saph.hash();

The package is available in Maven Central and may be included as:

<dependencies>
	...
	<dependency>
		<groupId>pet.orca</groupId>
		<artifactId>saph</artifactId>
		<version>1.0</version>
	</dependency>
	...
</dependencies>

About

Stupid Algorithm for Password Hashing (Java)

Resources

License

Stars

Watchers

Forks

Packages

No packages published