Example usage for org.apache.commons.codec.digest Md5Crypt apr1Crypt

List of usage examples for org.apache.commons.codec.digest Md5Crypt apr1Crypt

Introduction

In this page you can find the example usage for org.apache.commons.codec.digest Md5Crypt apr1Crypt.

Prototype

public static String apr1Crypt(String keyBytes) 

Source Link

Usage

From source file:Main.java

public static String getMusicCachePath(String url) {
    return MUSIC_CACHE_DIR + "/" + Md5Crypt.apr1Crypt(url) + ".mp3";
}