X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fmanager%2Fservice%2Fdb-row.h;h=9e95aa2a24ad306857bd7306ac8963d10c38a953;hb=9a014faa60dc27b5bcdb5d7307aa81262d615118;hp=0a03e25cf2c2fafa183cf223019b1734250d6e6b;hpb=ba61c50260aedaabb11857b5a462ccac37ad7413;p=platform%2Fcore%2Fsecurity%2Fkey-manager.git diff --git a/src/manager/service/db-row.h b/src/manager/service/db-row.h index 0a03e25..9e95aa2 100644 --- a/src/manager/service/db-row.h +++ b/src/manager/service/db-row.h @@ -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 -