mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-04-03 06:26:16 +00:00
12 lines
348 B
Java
12 lines
348 B
Java
package com.limelight.nvstream.http;
|
|
|
|
import java.security.cert.X509Certificate;
|
|
import java.security.interfaces.RSAPrivateKey;
|
|
|
|
public interface LimelightCryptoProvider {
|
|
X509Certificate getClientCertificate();
|
|
RSAPrivateKey getClientPrivateKey();
|
|
byte[] getPemEncodedClientCertificate();
|
|
String encodeBase64String(byte[] data);
|
|
}
|