Modify key-provider API name 'unwrapDEK' to 'getPureDEK'
authorkyungwook tak <k.tak@samsung.com>
Thu, 12 Jun 2014 01:26:42 +0000 (10:26 +0900)
committerBartlomiej Grzelewski <b.grzelewski@samsung.com>
Fri, 12 Sep 2014 12:58:06 +0000 (14:58 +0200)
Fix key returned by 'getPureDEK' had wrong size
for the same reason with 'getPureDomainKEK'

Change-Id: I42df2cdacf580bb761242c046e8a532681196086
Signed-off-by: kyungwook tak <k.tak@samsung.com>
src/manager/service/key-provider.h

index 796d84f..60fccf1 100644 (file)
@@ -47,9 +47,9 @@ public:
 
     // EncryptedKey key extracted from database. Used to encrypt application data.
     // This key will be used to decrypt/encrypt data in ROW
-       // [tak] modify method name more appropriately
-       // decryptDEK -> unwrapDEK
-    KeyAES unwrapDEK(const RawBuffer &DEKInWrapForm);
+       // [tak] modify method name more appropriately getPureDEK
+       // decryptDEK -> getPureDEK
+    KeyAES getPureDEK(const RawBuffer &DEKInWrapForm);
 
     // Returns WRAPPED DEK. This will be written to datbase.
     // This key will be used to encrypt all application information.