mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-11 22:01:52 +00:00
21 lines
371 B
Java
21 lines
371 B
Java
package org.thoughtcrime.redphone.crypto.zrtp;
|
|
|
|
public class SASInfo {
|
|
|
|
private final String sasText;
|
|
private final boolean verified;
|
|
|
|
public SASInfo(String sasText, boolean verified) {
|
|
this.sasText = sasText;
|
|
this.verified = verified;
|
|
}
|
|
|
|
public String getSasText() {
|
|
return sasText;
|
|
}
|
|
|
|
public boolean isVerified() {
|
|
return verified;
|
|
}
|
|
}
|