package com.mobify.astro.helpers;

import java.math.BigInteger;
import java.security.SecureRandom;

/**
 * Created by helen on 2015-12-21.
 */
public class RandomStringGenerator {
    public static String generate(int length) {
        SecureRandom random = new SecureRandom();
        return new BigInteger(length * 4, random).toString(16);
    }
}
