mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 10:30:38 +00:00
Modifying methods to be public to match package division
This commit is contained in:
parent
d91e20e1f8
commit
a5aeec8902
18 changed files with 158 additions and 66 deletions
|
@ -1,11 +1,11 @@
|
|||
package org.asamk.signal;
|
||||
package org.asamk.signal.util;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.security.NoSuchAlgorithmException;
|
||||
import java.security.SecureRandom;
|
||||
|
||||
class Util {
|
||||
public class Util {
|
||||
public static String getSecret(int size) {
|
||||
byte[] secret = getSecretBytes(size);
|
||||
return Base64.encodeBytes(secret);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue