- 25 Nov, 2016 1 commit
-
-
Chul Lee authored
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 and TLS_ECDHE_ECDSA_WITH_AES_128_CCM cipher suites were added in order to support manufacturer certificate based OxM. Change-Id: I3ec5ddce982e5bfd5f7591b493448eec5468653f Signed-off-by:
Oleksii Beketov <ol.beketov@samsung.com> Signed-off-by:
Chul Lee <chuls.lee@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14619Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit e2a98487) Reviewed-on: https://gerrit.iotivity.org/gerrit/14745
-
- 24 Nov, 2016 13 commits
-
-
Kevin Kane authored
Lingering and mixed uses of malloc/free exist throughout IoTivity. Some buffers allocated with malloc are later freed with OICFree; this is dangerous in case the implementation of OICMalloc/OICFree ever changes. This change harmonizes the code to use the OIC versions to ensure code is always using the same heap allocation and free functions with two exceptions: * Sample code continues to use malloc/free; samples should not refer to internal functions. * The oc_logger module also still uses malloc/free; oic_malloc calls oc_logger when operating in ENABLE_MALLOC_DEBUG mode, and could result in a circular dependency if changed over. Change-Id: Icd47243eec33500fe7fcd7d5d79ddf2128a9e717 Signed-off-by:
Kevin Kane <kkane@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14623Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Mike Fenelon <mike.fenelon@microsoft.com> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> (cherry picked from commit 8141de88) Reviewed-on: https://gerrit.iotivity.org/gerrit/14697Reviewed-by:
Omar Maabreh <omarm@microsoft.com>
-
Habib Virji authored
In collection response add p parameter. This is the response in case of default entity handler. Application has to handle on its own adding policy parameter. Change-Id: Ie2195eb07575fbcc34413fca729a1a7db0805314 Signed-off-by:
Habib Virji <habib.virji@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14703Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Tested-by:
Uze Choi <uzchoi@samsung.com> (cherry picked from commit b19d0805) Reviewed-on: https://gerrit.iotivity.org/gerrit/14699Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com>
-
Habib Virji authored
- Uses the resource attribute of OCResource for storing and retrieving device and platform values. - Removed global savedDeviceInfo and savedPlatformInfo. The information passed via OCSetDeviceInfo and OCSetPlatformInfo is stored in rsrcAttributes. - OCAttribute type change from char * to void * to store generic value, this was part of OCResource but was not used. - Payload type PAYLOAD_TYPE_DEVICE and PAYLOAD_TYPE_PLATFORM is removed from PAYLOAD_TYPE as this was used only internally. - Payload convert and parse for payload type device and platform is removed, as device and payload uri uses OCRepresentation payload type. - Delete function to delete resource attributes. - OCDevicePayloadCreate and OCPlatformCreate is removed as this was only used internally, all values are now stored in resource attributes. - Moves OCSetDeviceInfo and OCSetPlatformInfo from ocstack to ocresource to avoid duplicate checking. - Add set and get API to set parameter for /oic/d and /oic/p. - OCGetResourceHandleAtUri accesible without ifdef RD_CLIENT. - Updated Unit test to test the functionality. - Add the OCSSetParam and OCGetParam in C++ and Java Change-Id: If822ae95a70e681121528679de8da1375718de0c Signed-off-by:
Habib Virji <habib.virji@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14377Reviewed-by:
Uze Choi <uzchoi@samsung.com> Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org>
-
js126.lee authored
Patch 1,2: Expose ConvertStrToUUID on OC stack to use common Ptach 3: Add OCConvertStringToUuid on C_common Change-Id: Icf9b0ee1bda6fa4d914c696fbbdc27e0998a7262 Signed-off-by:
js126.lee <js126.lee@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14605Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Chul Lee <chuls.lee@samsung.com> Reviewed-by:
Joonghwan Lee <jh05.lee@samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit d026fc6e) Reviewed-on: https://gerrit.iotivity.org/gerrit/14723
-
Nathan Heldt-Sheller authored
Per Core Spec conventions, even though PUT is technically legal for Create or Update, PUT is only ever used for Create. Therefore we need to change the CRUDN permission bit check in security layer. Updated Readme.scons.txt and README-building-and-running-secure-IoTivity- stack.txt to clarify build and use of secure IoTivity stack. Change-Id: Id362c9c0225e53240b2d1f844c5f05d55cfa2938 Signed-off-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14579Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> Reviewed-by:
Kevin Kane <kkane@microsoft.com> Reviewed-by:
Craig Pratt <craig@ecaspia.com> Reviewed-by:
Greg Zaverucha <gregz@microsoft.com> Reviewed-by:
Uze Choi <uzchoi@samsung.com> (cherry picked from commit da4ccd54) Reviewed-on: https://gerrit.iotivity.org/gerrit/14719Reviewed-by:
Randeep Singh <randeep.s@samsung.com>
-
Nathan Heldt-Sheller authored
The current Policy Engine logic is to assess the permissions on the first matching ACE for a request (matched via Subject and Resource), and respond to the request (Grant or Deny) based on that ACE. The new OCF 1.0 behavior specifies that if any ACE allows a request, it should be Granted (so-called "Union" behavior). To allow consistency we must fix this in 1.2.1. This patch changes the Policy Engine to keep searching for an ACE that Grants the request, until either the request is granted, or the end of the ACL is reached. Change-Id: Idd4e90c37c7e0fcf963105b34b3e82dfde2ccfd2 Signed-off-by:
Nathan Heldt-Sheller <nathan.heldt-sheller@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14701Reviewed-by:
Kevin Kane <kkane@microsoft.com> Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Greg Zaverucha <gregz@microsoft.com> (cherry picked from commit 9524976d) Reviewed-on: https://gerrit.iotivity.org/gerrit/14717Reviewed-by:
Randeep Singh <randeep.s@samsung.com>
-
Jee Hyeok Kim authored
1. RD publish fail due to lack of shared point lock logic. https://jira.iotivity.org/browse/IOT-1592 Change-Id: I278b67ac050fb5bcb0cb5ee6920c27e446f0f01a Signed-off-by:
Jee Hyeok Kim <jihyeok13.kim@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14647Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Habib Virji <habib.virji@samsung.com> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> (cherry picked from commit d1abd0ca) Reviewed-on: https://gerrit.iotivity.org/gerrit/14711
-
KIM JungYong authored
Samples of serveral services, no catch exception about out_of_range. With this patch, all of exception was caught. Change-Id: I18b9cf7633ac6c6ad3d5a8b9e37a5110ffd9d68f Signed-off-by:
KIM JungYong <jyong2.kim@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/13859Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> (cherry picked from commit 8b776fc5) Reviewed-on: https://gerrit.iotivity.org/gerrit/13865
-
Jongmin Choi authored
Remove x.org.iotivity from IoTivity secure resources Patch #1: Initial upload Change-Id: Icb067cc8a44d365665ef26e3955f6f79fa12415c Signed-off-by:
Jongmin Choi <jminl.choi@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14641Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Chul Lee <chuls.lee@samsung.com> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit 7704a4d2) Reviewed-on: https://gerrit.iotivity.org/gerrit/14663
-
Chul Lee authored
[Bug] 1. Perform the OTM. 2. Remove the device using OCRemoveDevice or OCRemoveDeviceWithUuid 3. Initialize the server to unowned status. 3. Perform the OTM again w/ same server. [Actual Result] Device UUID removed from PDM DB. [Expected result] Device UUID should be set to initial status. Change-Id: Ie662ca6eeedfb5a98db4d97e020b61fbf331cb0e Signed-off-by:
Chul Lee <chuls.lee@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14643Reviewed-by:
Uze Choi <uzchoi@samsung.com> Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Jihun Ha <jihun.ha@samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit 531eb849) Reviewed-on: https://gerrit.iotivity.org/gerrit/14665
-
Parkhi authored
- Add validation check logic when received response of findResource. Change-Id: Ib2e9f6bf3534f77e7d6260fca803ccf629df5b2d Signed-off-by:
Parkhi <h_w.park@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14617Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Madan Lanka <lanka.madan@samsung.com>
-
Kevin Kane authored
If these dependencies are cloned into the repo, git will think they're untracked subtrees of the iotivity repo. This change adds them to .gitignore like the rest of the dependencies in extlibs. Change-Id: I65074d5df9accef813d8f1ffc3be2a0e887ced91 Signed-off-by:
Kevin Kane <kkane@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14423Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Tested-by:
Uze Choi <uzchoi@samsung.com> (cherry picked from commit 7a89bb93) Reviewed-on: https://gerrit.iotivity.org/gerrit/14519Reviewed-by:
Habib Virji <habib.virji@samsung.com> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
Dan Mihai authored
Improve the snprintf surrogate used to build for Windows using Visual Studio 2013 or older. Also remove the dependency on cmake for building gtest for Windows, to fix a build break for the new snprintf_test.cpp. This is a cherry-pick of commit b2a398ea from the 1.2-rel branch. Change-Id: I70c9d0766a9a316a19cbd283671137e61ab88dbf Signed-off-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14387Reviewed-by:
Kevin Kane <kkane@microsoft.com> Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Dave Thaler <dthaler@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14627
-
- 23 Nov, 2016 1 commit
-
-
Trevor Bramwell authored
This is used by the 'git-review' to specify the upstream gerrit server. Change-Id: I5823a86f1eb0d0a8b6d2ed39fc0927347ea2ca94 Signed-off-by:
Trevor Bramwell <tbramwell@linuxfoundation.org> Reviewed-on: https://gerrit.iotivity.org/gerrit/9655Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com>
-
- 22 Nov, 2016 6 commits
-
-
Ossama Othman authored
To match the corresponding callback function prototype (e.g. CANetworkPacketReceivedCallback and CAErrorHandleCallback), the data length parameter for a few callback function implementations should have been of type size_t instead uint32_t. This addresses several parameter type mismatch warnings on 64 bit platforms. Change-Id: Iaa5740a9fdb9d59fa13832eb3b87335d3355bd37 Signed-off-by:
Ossama Othman <ossama.othman@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14237Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-by:
Ziran Sun <ziran.sun@samsung.com> Reviewed-by:
Mike Fenelon <mike.fenelon@microsoft.com>
-
Philippe Coval authored
Change-Id: I6f016165739f57e33fd950f07f1d379b6fa3da69 Signed-off-by:
Philippe Coval <philippe.coval@osg.samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/13523Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Mats Wichmann <mats@osg.samsung.com> (cherry picked from commit 9f948906) Reviewed-on: https://gerrit.iotivity.org/gerrit/13561Reviewed-by:
Ziran Sun <ziran.sun@samsung.com>
-
Oleksandr Dmytrenko authored
Removed payload type check in Get request Change-Id: I405a7a6bba7255d8c05cc8a34342217c6e04e819 Signed-off-by:
Oleksandr Dmytrenko <o.dmytrenko@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14163Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit 0528ed28) Reviewed-on: https://gerrit.iotivity.org/gerrit/14601
-
bg.chun authored
Add missing .h files on ifaddrs.h and android caipnwmonitor.c for fix runtime issue. Change-Id: Iec71fa0929b8682fda05a4d0d7cb89351be01d2d Signed-off-by:
bg.chun <bg.chun@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14537Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Larry Sachs <larry.j.sachs@intel.com> Reviewed-by:
Hyuna Jo <hyuna0213.jo@samsung.com> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com>
-
Todd Malsbary authored
RD server. Prior to this fix, rdEntityHandler would always return OC_EH_ERROR. Change-Id: I1099ffe19e200982562cd9de4f7c97e173a71431 Signed-off-by:
Todd Malsbary <todd.malsbary@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14473Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Habib Virji <habib.virji@samsung.com>
-
Jeff Beck authored
Ignore extra IDE files for IDEA Change-Id: I06656bc9fb15fee68559902e6b620bfb6e9ea62c Signed-off-by:
Jeff Beck <beckje01@gmail.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/10307Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> Reviewed-by:
Jee Hyeok Kim <jihyeok13.kim@samsung.com>
-
- 21 Nov, 2016 8 commits
-
-
Kevin Kane authored
Current build will sync to the head of TinyCBOR's master branch. To remove this unpredictability from the build, always sync to a particular release tag. Change-Id: I471ac19aedc787bca64ee01c4733ab319d6f32d3 Signed-off-by:
Kevin Kane <kkane@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14165Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> (cherry picked from commit 6b368cb9) Reviewed-on: https://gerrit.iotivity.org/gerrit/14425
-
bg.chun authored
update file path(ifaddrs.x -> caifaddrs.x) and fix netlink usage for remove static analysis warring Change-Id: I672d9ba1250710cc10c66cbbde56b6b12afc15e8 Signed-off-by:
bg.chun <bg.chun@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14153Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Jaehong Jo <jaehong.jo@samsung.com> Reviewed-by:
Ashok Babu Channa <ashok.channa@samsung.com>
-
bg.chun authored
provide basic data structure, function, types for OCF Endpoint See detail in Jira IOT-1207 Change-Id: I4bdcca71ffdab101c729406a6509b6f1103b9ca8 Signed-off-by:
bg.chun <bg.chun@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/9897Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Jaehong Jo <jaehong.jo@samsung.com> Reviewed-by:
Ashok Babu Channa <ashok.channa@samsung.com>
-
Gregg Reynolds authored
error: constexpr function's return type 'std::vector<TypeInfo>' is not a literal type Change-Id: I3f0e2ac5ba0330698052db962a3ca4b81b3edb39 Signed-off-by:
Gregg Reynolds <reynolds-gregg@norc.org> Reviewed-on: https://gerrit.iotivity.org/gerrit/8487Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> Reviewed-by:
Ziran Sun <ziran.sun@samsung.com>
-
Robert Spielmann authored
Change-Id: If23217339d99ba5ad9e38133607de813ba27fd75 Signed-off-by:
Robert Spielmann <spielmann@kellendonk.de> Reviewed-on: https://gerrit.iotivity.org/gerrit/6179Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> Reviewed-by:
Ziran Sun <ziran.sun@samsung.com>
-
Jake Kim authored
A name of this file is OICMiddle, but there is a typing error in help message. So modify from IOCMiddle to OICMiddle. Change-Id: I29be198ca313022753531088e53d5d47c61fef36 Signed-off-by:
Jake Kim <copy_x@naver.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/1405Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com>
-
Chul Lee authored
1. Add manufacturer certificate OxM callbacks : resource/csdk/security/provisioning/src/oxmmanufacturercert.c : resource/csdk/security/provisioning/include/oxm/oxmmanufacturercert.h 2. Apply the manufacturer cert based OxM on the client & server. : resource/csdk/security/provisioning/src/ownershiptransfermanager.c : resource/csdk/security/src/doxmresource.c 3. Add manufacturer certificate supported sample server : resource/csdk/security/provisioning/sample/sampleserver_mfg.cpp 4. Add API to set the allowed/not-allowed OxM which is OCSetOxmAllowStatus() : resource/csdk/security/provisioning/src/ocprovisioningmanager.c : resource/csdk/security/provisioning/include/ocprovisioningmanager.h 5. Add OCStackResult code to handle not allowed OxM exception. : resource/csdk/stack/include/octypes.h : resource/src/OCException.cpp : resource/include/StringConstants.h : resource/unittests/OCExceptionTest.cpp 6. Update the SConscript according to above modifications. : resource/csdk/security/provisioning/SConscript : resource/csdk/security/provisioning/sample/SConscript Change-Id: Ibb4b4eec33a1e39234f808e32cc3b96aff4879ad Signed-off-by:
Chul Lee <chuls.lee@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14275Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit 7b7e5a97) Reviewed-on: https://gerrit.iotivity.org/gerrit/14503
-
hyuna0213.jo authored
- resolve incompatible types error to build windows Change-Id: I5095bb7de066eb966316812d57728361c685a811 Signed-off-by:
hyuna0213.jo <hyuna0213.jo@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14533Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-by:
Dave Thaler <dthaler@microsoft.com> Reviewed-by:
Ashok Babu Channa <ashok.channa@samsung.com>
-
- 18 Nov, 2016 8 commits
-
-
Benjamin Cabé authored
Change-Id: I683b6602afcc26984be146d800559532df729675 Signed-off-by:
Benjamin Cabé <kartben@gmail.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/1158Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com>
-
Dave Thaler authored
The % character is not legal to be placed literally in a URI, it must be escaped (as "%25") before being enclosed in a URI. Other places were changed in July in change 9419, and some more in change 14009, but these code paths were not changed at that time. This also fixes a bug in setHost which did not mark an IPv6 address as IPv6, and adds a test case that covers this. Change-Id: I1331ecb9c5482a2d43dd675978a1f34c6d37cb4c Signed-off-by:
Dave Thaler <dthaler@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14263Reviewed-by:
jihwan seo <jihwan.seo@samsung.com> Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Ashwini Kumar <k.ashwini@samsung.com> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com>
-
Habib Virji authored
Bug fix due to change introduced in https://gerrit.iotivity.org/gerrit/#/c/12283/ Change-Id: Ib6b03f4296c8ef0fb1ac7ac79ff1023856a070bc Signed-off-by:
Habib Virji <habib.virji@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14419Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-by:
Soemin Tjong <stjong@microsoft.com> Reviewed-by:
Larry Sachs <larry.j.sachs@intel.com> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Ashok Babu Channa <ashok.channa@samsung.com>
-
David Antler authored
Change-Id: I9cc9019fb90d38913151b9d6678f359ca35c06a4 Signed-off-by:
David Antler <david.a.antler@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/13567Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-by:
Dave Thaler <dthaler@microsoft.com> Reviewed-by:
Kevin Kane <kkane@microsoft.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com>
-
Joonghwan Lee authored
added api to close all of ssl connections Change-Id: I2bcd1890a70ba64fd7f4cc33e6a1dfcbf6590050 Signed-off-by:
Joonghwan Lee <jh05.lee@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/13953Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Jihun Ha <jihun.ha@samsung.com> Reviewed-by:
Chul Lee <chuls.lee@samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14357
-
Gabriel Schulhof authored
Change-Id: I5858833c85a76bc4acaab1b6393f0feda28284b7 Signed-off-by:
Gabriel Schulhof <gabriel.schulhof@intel.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14259Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Dan Mihai <Daniel.Mihai@microsoft.com> Reviewed-by:
Phil Coval <philippe.coval@osg.samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com>
-
Kevin Kane authored
Owner PSK secret was cleared too early; only clear after all uses are finished. Change-Id: Ie39990a5aabfcd71b8370103b7182cb76cb09f40 Signed-off-by:
Kevin Kane <kkane@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14491Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Jongsung Lee <js126.lee@samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit d07d715c) Reviewed-on: https://gerrit.iotivity.org/gerrit/14497
-
KIM JungYong authored
When starting consumer service, getTopic callback fisrt and then discover callback due to can not call both changed callback and discover callback. because when callback getTopic, NSProvider instance does not set the listener, and when callback discover after, NSProvider instance already create, so can not callback discover. This point is invalid logic on CPP layer. With this patch, altough call getTopic first, can callback discover callback. Change-Id: Ib7a3c8cf3e78edf24d0251227c5d3c225c3ba3a4 Signed-off-by:
KIM JungYong <jyong2.kim@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/13855Reviewed-by:
Uze Choi <uzchoi@samsung.com> Tested-by:
Uze Choi <uzchoi@samsung.com> (cherry picked from commit 61241563) Reviewed-on: https://gerrit.iotivity.org/gerrit/13863Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org>
-
- 17 Nov, 2016 3 commits
-
-
Kevin Kane authored
Add an OICClearMemory helper function, and use it to securely clear buffers that contain keys and other secret data that shouldn't be left in the stack or on the heap. Rename privateKey to g_privateKey in csr.c. Fix a couple of leaked payloads on error return paths in secureresourceprovider.c (which will also now zero their contents). Change-Id: If79c840ad758be2a7ca1bf7e6ccccb6dbdc39cf2 Signed-off-by:
Kevin Kane <kkane@microsoft.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14091Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit 916ced64) Reviewed-on: https://gerrit.iotivity.org/gerrit/14443
-
js126.lee authored
https://jira.iotivity.org/browse/IOT-1550 issue : Rowner of cred is reset, when saving Cert. chain using SRPSaveTrustCertChain and SRPSaveOwnCertChain. Patch 1: upload patch Patch 2: rebase Patch 3: Apply review comment Change-Id: I59cdbfb30253c61e1c27dcf640958899af976a96 Signed-off-by:
js126.lee <js126.lee@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14327Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Chul Lee <chuls.lee@samsung.com> Reviewed-by:
Uze Choi <uzchoi@samsung.com> Reviewed-by:
Randeep Singh <randeep.s@samsung.com> (cherry picked from commit 39f4a884) Reviewed-on: https://gerrit.iotivity.org/gerrit/14441
-
jihwan.seo authored
Change-Id: I07e2e0e24241f0c5dd53259f8333eccc722d4e39 Signed-off-by:
jihwan.seo <jihwan.seo@samsung.com> Reviewed-on: https://gerrit.iotivity.org/gerrit/14405Tested-by:
jenkins-iotivity <jenkins-iotivity@opendaylight.org> Reviewed-by:
Larry Sachs <larry.j.sachs@intel.com> Reviewed-by:
Rick Bell <richard.s.bell@intel.com> Reviewed-by:
Jaehong Jo <jaehong.jo@samsung.com> Reviewed-by:
Ziran Sun <ziran.sun@samsung.com>
-