import org.signal.zkgroup.profiles.ProfileKey;
import org.whispersystems.util.Base64;
-class KeyUtils {
+public class KeyUtils {
private KeyUtils() {
}
return Base64.encodeBytes(secret);
}
- static byte[] getSecretBytes(int size) {
+ public static byte[] getSecretBytes(int size) {
byte[] secret = new byte[size];
RandomUtils.getSecureRandom().nextBytes(secret);
return secret;