mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
2652dfce3f
* Add threading support to SGX Avian. * Handle contract verification exceptions using uncaught exception handler. * Indent uniformly to 4 spaces. * Add comments for some of the uses of SGX synchronisation primitives.
19 lines
615 B
Prolog
19 lines
615 B
Prolog
# proguard include file (http://proguard.sourceforge.net)
|
|
|
|
-keep class avian.SystemClassLoader {
|
|
public void startBlacklisting(java.lang.Thread);
|
|
}
|
|
|
|
# We need these for Corda deserialisation:
|
|
-keep class sun.security.ec.ECPublicKeyImpl
|
|
-keep class sun.security.ec.ECPrivateKeyImpl
|
|
-keep class org.bouncycastle.jcajce.provider.asymmetric.rsa.BCRSAPublicKey
|
|
-keep class org.bouncycastle.jcajce.provider.asymmetric.rsa.BCRSAPrivateCrtKey
|
|
|
|
-keep class java.lang.invoke.SerializedLambda {
|
|
private java.lang.Object readResolve();
|
|
}
|
|
|
|
-keep class com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl
|
|
|