mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-05 01:45:39 +00:00
59 lines
1.7 KiB
Java
59 lines
1.7 KiB
Java
![]() |
package org.whispersystems.textsecure.util;
|
||
|
|
||
|
import android.app.AlertDialog;
|
||
|
import android.content.Context;
|
||
|
import android.widget.EditText;
|
||
|
|
||
|
import java.io.ByteArrayOutputStream;
|
||
|
import java.io.IOException;
|
||
|
import java.io.InputStream;
|
||
|
import java.security.NoSuchAlgorithmException;
|
||
|
import java.security.SecureRandom;
|
||
|
|
||
|
public class Util {
|
||
|
public static boolean isEmpty(String value) {
|
||
|
return value == null || value.trim().length() == 0;
|
||
|
}
|
||
|
|
||
|
public static boolean isEmpty(EditText value) {
|
||
|
return value == null || value.getText() == null || isEmpty(value.getText().toString());
|
||
|
}
|
||
|
|
||
|
public static boolean isEmpty(CharSequence value) {
|
||
|
return value == null || value.length() == 0;
|
||
|
}
|
||
|
|
||
|
public static void showAlertDialog(Context context, String title, String message) {
|
||
|
AlertDialog.Builder dialog = new AlertDialog.Builder(context);
|
||
|
dialog.setTitle(title);
|
||
|
dialog.setMessage(message);
|
||
|
dialog.setIcon(android.R.drawable.ic_dialog_alert);
|
||
|
dialog.setPositiveButton(android.R.string.ok, null);
|
||
|
dialog.show();
|
||
|
}
|
||
|
|
||
|
public static String getSecret(int size) {
|
||
|
try {
|
||
|
byte[] secret = new byte[size];
|
||
|
SecureRandom.getInstance("SHA1PRNG").nextBytes(secret);
|
||
|
return Base64.encodeBytes(secret);
|
||
|
} catch (NoSuchAlgorithmException nsae) {
|
||
|
throw new AssertionError(nsae);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static String readFully(InputStream in) throws IOException {
|
||
|
ByteArrayOutputStream bout = new ByteArrayOutputStream();
|
||
|
byte[] buffer = new byte[4096];
|
||
|
int read;
|
||
|
|
||
|
while ((read = in.read(buffer)) != -1) {
|
||
|
bout.write(buffer, 0, read);
|
||
|
}
|
||
|
|
||
|
in.close();
|
||
|
|
||
|
return new String(bout.toByteArray());
|
||
|
}
|
||
|
}
|