Skip to content

jimmyMaci/mystic-crypt

 
 

Repository files navigation

mystic-crypt

##Key features:

  • Hashing passwords
  • Obfuscate text with specified map
  • Hex en- and decryption
  • Creation of randomized data
  • Brute-force processing
  • Wordlist processing

License

The source code comes under the liberal Apache License V2.0, making mystic-crypt great for all types of applications.

Build status and latest maven version

Build Status

Maven Central

Maven dependency

Maven dependency is now on sonatype. Check out sonatype repository for latest snapshots and releases.

Add the following maven dependency to your project pom.xml if you want to import the core functionality of mystic-core:

Than you can add the dependency to your dependencies:

	<!-- MYSTIC-CRYPT versions -->
	<mystic-crypt.version>4.10.0</mystic-crypt.version>
	<crypt-core.version>${mystic-crypt.version}</crypt-core.version>
	<randomizer.version>${mystic-crypt.version}</randomizer.version>
	<auth-security.version>${mystic-crypt.version}</auth-security.version>

	<dependencies>
		...
		<!-- MYSTIC-CRYPT DEPENDENCIES -->
		<dependency>
			<groupId>de.alpharogroup</groupId>
			<artifactId>crypt-core</artifactId>
			<version>${crypt-core.version}</version>
		</dependency>
	</dependencies>

Add the following maven dependency to your project pom.xml if you want to import the functionality of randomizer:

Than you can add the dependency to your dependencies:

	<dependencies>
		...
		<!-- MYSTIC-CRYPT DEPENDENCIES -->
		<dependency>
			<groupId>de.alpharogroup</groupId>
			<artifactId>randomizer</artifactId>
			<version>${randomizer.version}</version>
		</dependency>
	</dependencies>

Add the following maven dependency to your project pom.xml if you want to import the functionality of auth-security:

Than you can add the dependency to your dependencies:

	<dependencies>
		...
		<!-- MYSTIC-CRYPT DEPENDENCIES -->
		<dependency>
			<groupId>de.alpharogroup</groupId>
			<artifactId>auth-security</artifactId>
			<version>${auth-security.version}</version>
		</dependency>
	</dependencies>

Want to Help and improve it?

The source code for mystic-crypt are on GitHub. Please feel free to fork and send pull requests!

Create your own fork of astrapi69/mystic-crypt/fork

To share your changes, submit a pull request.

Don't forget to add new units tests on your changes.

Contacting the Developer

Do not hesitate to contact the mystic-crypt developers with your questions, concerns, comments, bug reports, or feature requests.

  • Feature requests, questions and bug reports can be reported at the issues page.

Donate

Flattr this

About

Cpyptograhic library in java

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Java 98.5%
  • HTML 1.5%