Update CVE-2020-0450

Aligh with the latest system/nfc

Bug: 169640640
Test: build pass
Change-Id: Ie31bb64260c160e6b3c7c4a5f4967c1343945fa1
diff --git a/hostsidetests/securitybulletin/securityPatch/CVE-2020-0450/poc.cpp b/hostsidetests/securitybulletin/securityPatch/CVE-2020-0450/poc.cpp
index 8aeaf19..682fb66 100644
--- a/hostsidetests/securitybulletin/securityPatch/CVE-2020-0450/poc.cpp
+++ b/hostsidetests/securitybulletin/securityPatch/CVE-2020-0450/poc.cpp
@@ -41,43 +41,6 @@
 void *kVulnPtr = nullptr;
 uint16_t kVulnSize = 0;
 
-// borrowed from rw_i93.cc
-enum {
-    RW_I93_STATE_NOT_ACTIVATED, /* ISO15693 is not activated            */
-    RW_I93_STATE_IDLE,          /* waiting for upper layer API          */
-    RW_I93_STATE_BUSY,          /* waiting for response from tag        */
-
-    RW_I93_STATE_DETECT_NDEF,   /* performing NDEF detection precedure  */
-    RW_I93_STATE_READ_NDEF,     /* performing read NDEF procedure       */
-    RW_I93_STATE_UPDATE_NDEF,   /* performing update NDEF procedure     */
-    RW_I93_STATE_FORMAT,        /* performing format procedure          */
-    RW_I93_STATE_SET_READ_ONLY, /* performing set read-only procedure   */
-
-    RW_I93_STATE_PRESENCE_CHECK /* checking presence of tag             */
-};
-
-// borrowed from rw_i93.cc
-enum {
-    RW_I93_SUBSTATE_WAIT_UID,          /* waiting for response of inventory    */
-    RW_I93_SUBSTATE_WAIT_SYS_INFO,     /* waiting for response of get sys info */
-    RW_I93_SUBSTATE_WAIT_CC,           /* waiting for reading CC               */
-    RW_I93_SUBSTATE_SEARCH_NDEF_TLV,   /* searching NDEF TLV                   */
-    RW_I93_SUBSTATE_CHECK_LOCK_STATUS, /* check if any NDEF TLV is locked      */
-
-    RW_I93_SUBSTATE_RESET_LEN,  /* set length to 0 to update NDEF TLV   */
-    RW_I93_SUBSTATE_WRITE_NDEF, /* writing NDEF and Terminator TLV      */
-    RW_I93_SUBSTATE_UPDATE_LEN, /* set length into NDEF TLV             */
-
-    RW_I93_SUBSTATE_WAIT_RESET_DSFID_AFI, /* reset DSFID and AFI */
-    RW_I93_SUBSTATE_CHECK_READ_ONLY,      /* check if any block is locked         */
-    RW_I93_SUBSTATE_WRITE_CC_NDEF_TLV,    /* write CC and empty NDEF/Terminator TLV
-                                           */
-
-    RW_I93_SUBSTATE_WAIT_UPDATE_CC, /* updating CC as read-only             */
-    RW_I93_SUBSTATE_LOCK_NDEF_TLV,  /* lock blocks of NDEF TLV              */
-    RW_I93_SUBSTATE_WAIT_LOCK_CC    /* lock block of CC                     */
-};
-
 static tNFC_STATUS (*real_rw_i93_send_cmd_write_single_block)(uint16_t block_number,
                                                               uint8_t *p_data) = nullptr;