Implement updateGroup

This commit is contained in:
AsamK 2015-11-26 17:02:28 +01:00
parent 1689dfcb38
commit fb862e4dde
4 changed files with 144 additions and 25 deletions

View file

@ -9,7 +9,7 @@ class Util {
return Base64.encodeBytes(secret);
}
private static byte[] getSecretBytes(int size) {
public static byte[] getSecretBytes(int size) {
byte[] secret = new byte[size];
getSecureRandom().nextBytes(secret);
return secret;