From 322e2c3a129f2ace802898c70b240776d068ff18 Mon Sep 17 00:00:00 2001 From: Alex Klyubin Date: Mon, 11 May 2015 12:37:18 -0700 Subject: [PATCH] Add missing value for EcIesParameterSpec.PointFormatEnum. Change-Id: If14fe3c3c7ed123b0fa9d5874db2ad8844e49671 --- keystore/java/android/security/EcIesParameterSpec.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/keystore/java/android/security/EcIesParameterSpec.java b/keystore/java/android/security/EcIesParameterSpec.java index a3e5aec7bb866..dc0d712140b8c 100644 --- a/keystore/java/android/security/EcIesParameterSpec.java +++ b/keystore/java/android/security/EcIesParameterSpec.java @@ -50,7 +50,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 {} /**