Remove restrict mechanism.
[platform/core/security/key-manager.git] / src / manager / service / db-row.h
index 0a03e25..9e95aa2 100644 (file)
@@ -9,7 +9,6 @@ namespace CKM {
     struct DBRow {
         std::string alias;
         std::string smackLabel;
-        int restricted;
         int exportable;
         DBDataType dataType;        // cert/key/data
         DBCMAlgType algorithmType;  // Algorithm type used for row data encryption
@@ -17,7 +16,7 @@ namespace CKM {
         RawBuffer iv;               // encoded in base64
         int dataSize;               // size of information without hash and padding
         RawBuffer data;
+        RawBuffer tag;              // tag for Aes Gcm algorithm
     };
 } // namespace CKM
 
-