Protect ECUtils class methods

This commit is contained in:
str4d
2015-01-08 11:54:53 +00:00
parent dab92a2227
commit ae8f87c7da

5
app/proguard-rules.txt Normal file
View File

@ -0,0 +1,5 @@
-keepclassmembers class i2p.bote.crypto.ECUtils {
public static java.security.spec.ECParameterSpec getParameters(String curveName);
public static byte[] encodePoint(java.security.spec.ECParameterSpec ecSpec, java.security.spec.ECPoint point, boolean withCompression);
public static java.security.spec.ECPoint decodePoint(java.security.spec.EllipticCurve curve, byte[] encoded);
}