summaryrefslogtreecommitdiff
path: root/src/manager/service/encryption-service.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-04-18Coding style applied according to style checkersubmit/tizen/20160418.104308accepted/tizen/wearable/20160418.235737accepted/tizen/tv/20160418.235750accepted/tizen/mobile/20160418.235742accepted/tizen/ivi/20160418.235747accepted/tizen/common/20160418.142113Kyungwook Tak1-60/+68
Checker/Guide in http://10.113.136.204/confluence/pages/viewpage.action?pageId=44567756 Change-Id: Ie1c934dcc898b72a68b7a56d43eea4a3298b509c Signed-off-by: Kyungwook Tak <k.tak@samsung.com>
2016-01-05Fix file permissions.Bartlomiej Grzelewski1-0/+0
Change-Id: I8aa70dd580c192d7ec5d2b28ebbcb3d1ee0193a3
2015-12-22Apply coding rulesangwan.kwon1-8/+13
covered Tizen C++ coding rule list - [R06] : Do not unnecessarily use braces where a single statement will do. - Exception: if one branch of a conditional statement is a single statement, use braces in both branches. - [M08] : Keywords have following space rules - Put a space after (most) keywords - example: if, switch, case, for, do, while - Do not put a space after function like keywords - example: sizeof, typeof, alignof, __attribute__ - [M09] : Operators have following space rules - Put a space around(on each side of) most binary and ternary operators - Example : = + -< > * / % | & ^ <= >= == != ? : - Do not put a space after unary operators - Example: & * + -~ ! - Unary "++" and unary "--" are allowed no space on one side - Do not put a space around the "." and "->" structure member operators. - Do not put a space after cast operator - [M10] : Seperators have following space rules - Put a space after closing brace when it has anything on the line. - Exception : comma after closing brace '},‘ - Put a space after comma - Do not put space inside parenthesis '(', ')‘ - Do not put space before open square bracket '[‘ and inside square bracket '[', ']‘ - [M12] : Functions have the opening brace at the beginning of the next line. - [M13] : The open brace last on the line. The closing brace is empty on a line of its own - Exception : else, whileshould follow close brace '}’ - [M14] : Open braces for enum, union and structgo on the same line Change-Id: I6e59513ba121a25222e6e626792b3e115ebec1d3 Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
2015-09-08Integration with cynara.Bartlomiej Grzelewski1-2/+16
Change-Id: I75f727890d37b39e7054db4c68baad922eef1fc3
2015-06-26Implement key retrieval in encryption serviceKrzysztof Jackiewicz1-5/+15
[Feature] Encryption/decryption service implementation [Solution] Encryption service sends a key request, CKM service retrieves the key and returns it to Encryption service. [Verification] Run ckm-tests --group=CKM_ENCRYPTION_DECRYPTION and observe journalctl -f. TED_0010_encrypt_invalid_param_list should print: "Attempt to retrieve key failed with error: -15" (5 times) other failing tests should print: "Encryption/decryption not yet supported" Change-Id: I56dc8a08ba211e996295f962da12193027c1a78c
2015-06-26Add encryption serviceKrzysztof Jackiewicz1-0/+120
[Feature] Encryption/decryption implementation [Solution] Encryption service added [Verification] Run test: ckm-tests --group=CKM_ENCRYPTION_DECRYPTION Change-Id: I3ff79b06eabb6957ef2bbbe9a5bf7e5e2a995a21