All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lazycece.au.api.params.utils.SaltUtils Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.lazycece.au.api.params.utils;

import java.math.BigInteger;
import java.util.UUID;

/**
 * @author lazycece
 * @date 2019/11/20
 */
public class SaltUtils {

    public static String generateSalt() {
        String uuid = UUID.randomUUID().toString().replaceAll("-", "");
        String sn = new BigInteger(uuid, 16).toString();
        return sn.substring(0, 6);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy