Use generic PrivateKey type rather than RSAPrivateKey

This commit is contained in:
Cameron Gutman
2023-11-29 22:20:50 -06:00
parent 0af56b4981
commit ca82cd9752
2 changed files with 7 additions and 7 deletions

View File

@@ -1,11 +1,11 @@
package com.limelight.nvstream.http;
import java.security.PrivateKey;
import java.security.cert.X509Certificate;
import java.security.interfaces.RSAPrivateKey;
public interface LimelightCryptoProvider {
X509Certificate getClientCertificate();
RSAPrivateKey getClientPrivateKey();
PrivateKey getClientPrivateKey();
byte[] getPemEncodedClientCertificate();
String encodeBase64String(byte[] data);
}