mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
41 lines
1.2 KiB
Java
41 lines
1.2 KiB
Java
package org.webrtc;
|
|
|
|
import org.webrtc.PeerConnection;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class RtcCertificatePem {
|
|
private static final long DEFAULT_EXPIRY = 2592000;
|
|
public final String certificate;
|
|
public final String privateKey;
|
|
|
|
private static native RtcCertificatePem nativeGenerateCertificate(PeerConnection.KeyType keyType, long j);
|
|
|
|
String getCertificate() {
|
|
return this.certificate;
|
|
}
|
|
|
|
String getPrivateKey() {
|
|
return this.privateKey;
|
|
}
|
|
|
|
public RtcCertificatePem(String str, String str2) {
|
|
this.privateKey = str;
|
|
this.certificate = str2;
|
|
}
|
|
|
|
public static RtcCertificatePem generateCertificate() {
|
|
return nativeGenerateCertificate(PeerConnection.KeyType.ECDSA, DEFAULT_EXPIRY);
|
|
}
|
|
|
|
public static RtcCertificatePem generateCertificate(PeerConnection.KeyType keyType) {
|
|
return nativeGenerateCertificate(keyType, DEFAULT_EXPIRY);
|
|
}
|
|
|
|
public static RtcCertificatePem generateCertificate(long j) {
|
|
return nativeGenerateCertificate(PeerConnection.KeyType.ECDSA, j);
|
|
}
|
|
|
|
public static RtcCertificatePem generateCertificate(PeerConnection.KeyType keyType, long j) {
|
|
return nativeGenerateCertificate(keyType, j);
|
|
}
|
|
}
|