Merge "Add missing value for EcIesParameterSpec.PointFormatEnum." into mnc-dev

This commit is contained in:
Alex Klyubin
2015-05-11 19:47:54 +00:00
committed by Android (Google) Code Review

View File

@@ -52,7 +52,11 @@ import javax.crypto.Mac;
public class EcIesParameterSpec implements AlgorithmParameterSpec {
@Retention(RetentionPolicy.SOURCE)
@IntDef(value = {PointFormat.UNCOMPRESSED, PointFormat.COMPRESSED})
@IntDef({
PointFormat.UNSPECIFIED,
PointFormat.UNCOMPRESSED,
PointFormat.COMPRESSED,
})
public @interface PointFormatEnum {}
/**