51 lines
1.3 KiB
Java
51 lines
1.3 KiB
Java
package com.google.android.gms.common.util;
|
|
|
|
import android.util.Base64;
|
|
import com.google.errorprone.annotations.ResultIgnorabilityUnspecified;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public final class Base64Utils {
|
|
public static byte[] decode(String str) {
|
|
if (str == null) {
|
|
return null;
|
|
}
|
|
return Base64.decode(str, 0);
|
|
}
|
|
|
|
public static byte[] decodeUrlSafe(String str) {
|
|
if (str == null) {
|
|
return null;
|
|
}
|
|
return Base64.decode(str, 10);
|
|
}
|
|
|
|
@ResultIgnorabilityUnspecified
|
|
public static byte[] decodeUrlSafeNoPadding(String str) {
|
|
if (str == null) {
|
|
return null;
|
|
}
|
|
return Base64.decode(str, 11);
|
|
}
|
|
|
|
public static String encode(byte[] bArr) {
|
|
if (bArr == null) {
|
|
return null;
|
|
}
|
|
return Base64.encodeToString(bArr, 0);
|
|
}
|
|
|
|
public static String encodeUrlSafe(byte[] bArr) {
|
|
if (bArr == null) {
|
|
return null;
|
|
}
|
|
return Base64.encodeToString(bArr, 10);
|
|
}
|
|
|
|
public static String encodeUrlSafeNoPadding(byte[] bArr) {
|
|
if (bArr == null) {
|
|
return null;
|
|
}
|
|
return Base64.encodeToString(bArr, 11);
|
|
}
|
|
} |