summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* VERSION: Release Samba 4.3.0samba-4.3.0Stefan Metzmacher2015-09-081-2/+2
| | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Karolin Seeger <kseeger@samba.org>
* WHATSNEW: Add release notes for Samba 4.3.0.Stefan Metzmacher2015-09-081-8/+27
| | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Karolin Seeger <kseeger@samba.org>
* s4:torture:vfs_fruit: created empty resourceforksRalph Boehme2015-09-041-0/+129
| | | | | | | | | | | | | | | | Check for opens and creates, created empty resourceforks result in ENOENT in subsequent opens. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11467 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Wed Sep 2 06:50:16 CEST 2015 on sn-devel-104 Autobuild-User(v4-3-test): Karolin Seeger <kseeger@samba.org> Autobuild-Date(v4-3-test): Fri Sep 4 15:45:15 CEST 2015 on sn-devel-104
* s4:torture:vfs_fruit: add a resource fork truncation testRalph Boehme2015-09-041-0/+118
| | | | | | | | | | Truncating a resource fork to 0 bytes should make it inaccessible for subsequent creates and return NT_STATUS_OBJECT_NAME_NOT_FOUND. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11467 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* vfs_fruit: delete ._ file when deleting the basefileRalph Boehme2015-09-041-12/+50
| | | | | | | | | | | 0 byte resource fork streams are not listed by vfs_streaminfo, as a result stream cleanup/deletion of file deletion doesn't remove the resourcefork stream. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11467 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* vfs_fruit: split and simplify fruit_ftruncateRalph Boehme2015-09-041-30/+60
| | | | | | | Bug: https://bugzilla.samba.org/show_bug.cgi?id=11467 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* vfs_fruit: handling of empty resource forkRalph Boehme2015-09-041-8/+26
| | | | | | | | | | | | Opening the resource fork stream with O_CREAT mustn't create a visible node in the filesystem, only create a file handle. As long as the creator didn't write into the stream, other openers withour O_CREAT MUST get an ENOENT error. This is way OS X SMB server implements it. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11467 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
* samr4: Use <SID=%s> in GetGroupsForUserVolker Lendecke2015-09-031-2/+8
| | | | | | | | | | | | | | | | This way we avoid quoting problems in user's DNs Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Tue Sep 1 23:49:14 CEST 2015 on sn-devel-104 BUG: https://bugzilla.samba.org/show_bug.cgi?id=11488 (cherry picked from commit 841845dea35089a187fd1626c9752d708989ac7b) Autobuild-User(v4-3-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-3-test): Thu Sep 3 12:14:12 CEST 2015 on sn-devel-104
* python/tests: Add more assertions that we get back the value we expectAndrew Bartlett2015-09-031-0/+6
| | | | | | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Tue Sep 1 17:00:53 CEST 2015 on sn-devel-104 (cherry picked from commit 5aefea842528d053b86b50ff2ed9047db1ca4594)
* python/tests: Add tests for 64 bit signed integersAndrew Bartlett2015-09-031-1/+27
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 1f50e194517b84ccc8d0208d563e83dabfb2327a)
* pidl/python: also add a ndr_PyLong_FromLongLong() for symnetric reasonsStefan Metzmacher2015-09-031-1/+10
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit e6fbeb860638ad1113914b9460a618025d950d08)
* pidl/python: Provide static inline helper function ↵Andrew Bartlett2015-09-031-3/+12
| | | | | | | | | | | | | | | | | | | | ndr_PyLong_FromUnsignedLongLong This should isolate any coverity warnings on 64-bit platforms (where LONG_MAX is larger than any possible 32 bit value) to a single spot, or possibly eliminate it. This is needed for the unsigned 64 bit case, and on 32 bit systems, as PyInt_FromLong is limited to a signed "long" int. The compiler should be able to eliminate many of these calls with the embedded type knowlege. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit d1416d65a3cc61e4e56d1a43bb634d12f418ba0e)
* pidl/python: Calculate maximum integer values using a lookup tableAndrew Bartlett2015-09-031-2/+39
| | | | | | | | | | | | | | This avoids a << of 64 bits in the unused end of the conditional expression. This was flagged by Coverity and the fix was suggested by metze. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Andrew Bartlett Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit c2f4e324d9c1ced2e1da859594ef67ae9f645919)
* selftest: Add assertion that we actually fix the replPropertyMetaData sort orderAndrew Bartlett2015-09-033-1/+290
| | | | | | | | | | | | | | This ensures that the dbcheck rule fixes the sort order (and only fixes the sort order). BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Tue Aug 25 02:45:58 CEST 2015 on sn-devel-104 (cherry picked from commit dcc657a2219498beac8bde6cbf999ee7cf6acae8)
* selftest: Add in steps to re-create this databaseAndrew Bartlett2015-09-035-0/+334
| | | | | | | | | | This may assist if this needs to be changed again BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 5504502aa68f4901f52dc2e8f7ee8b3a9c74546e)
* Update release-4-1-0rc3 to include data using schema modificationsAndrew Bartlett2015-09-0325-41172/+40544
| | | | | | | | | | This allows us to know that the previous patches are correct. BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit a6957ba5da3130994d2f35328aea6f4cd604147a)
* ldb: create a cache of known wellknown objects instead of continously ↵Matthieu Patou2015-09-031-1/+14
| | | | | | | | | | | | | | | searching in the db Profiling on dbcheck have shown that we spend 10% of the time looking for wellknown objects. BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Change-Id: I13ed58e8062d1b7b6179d17b0e7e56f943572c6c Signed-off-by: Matthieu Patou <mat@matws.net> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 6122acad0f1a7bc23b6f58862c16968e13da979d)
* dbcheck: Use set() operations to make dbcheck more efficientAndrew Bartlett2015-09-031-18/+18
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit c049106bf8267b30a9242d2d574661291cced780)
* dbcheck: Try to avoid duplicate searchesAndrew Bartlett2015-09-031-2/+4
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit fb88f9cbd969267aaffa021724cf34087c653ba8)
* dbcheck: Add additional tests for the attributeID listAndrew Bartlett2015-09-031-0/+14
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 2ff9b171378922e68205d5f0eefd2231607b5b89)
* dbcheck: Add explict tests for unknown and unsorted attributeID valuesAndrew Bartlett2015-09-035-13/+113
| | | | | | | | | | | | | | | | | | | | | Unknown attributeID values would cause an exception previously, and unsorted attributes cause a failure to replicate with Samba 4.2. In commit 61b978872fe86906611f64430b2608f5e7ea7ad8 we started to sort these values correctly, but previous versions of Samba did not sort them correctly (we sorted high-bit-set values as negative), and then after 9c9df40220234cba973e84b4985d90da1334a1d1 we stoped accepting these. To ensure we are allowed to make this unusual change to the replPropertyMetaData, a new OID is allocated and checked for in repl_meta_data.c BUG: https://bugzilla.samba.org/show_bug.cgi?id=10973 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 2766bad5ef1e1949746c059c29f179ddae476239)
* pidl: Assert that python arrays will not overflow the C arrayAndrew Bartlett2015-09-031-0/+7
| | | | | | | | | | | We do not write network services in Python, so this is not a security issue, but would cause a crash or other odd behaviour if the length was changed BUG: https://bugzilla.samba.org/show_bug.cgi?id=11430 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit e3cf25bdc04795f884fe2a4ce0605d5175b45e93)
* pydsdb: Allow the full range of uint32_t values for attributeIDAndrew Bartlett2015-09-031-2/+2
| | | | | | | | | | The high bit may be set in these integers, so we need an unsigned int to store it in BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit bed29f3c92861fb2b83ad03a5c759061e1c31eba)
* python/tests: Add tests for integer overflow handlingAndrew Bartlett2015-09-033-0/+209
| | | | | | | | | | | This also documents an issue with our python bindings and lists, as changes to integers in a list of integers are not preserved BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 336d41155e94303d0e1fa0530874539339439fed)
* pidl: Change PIDL to correctly use and validate python integer typesAndrew Bartlett2015-09-031-35/+118
| | | | | | | | | | | | | | | | | | In particular, it is critical that we use unsigned integers of sufficient size in python for unsigned C integers, and it is critical that we check for overflow at both the python and C level. Otherwise, we may both represent and sort these incorrectly, in particular when sorting attributeID values from DRSUAPI which are represented as an signed enum in C and a uint32_t in IDL, but which often has the high bit set (in schema extensions). BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 5206ccd002b015a16952d21bd2fa441ff2e39eab)
* python: Use an unsigned integer for buf_size, not -1Andrew Bartlett2015-09-031-1/+1
| | | | | | | | | | This will fail once our python bindings correctly check value ranges BUG: https://bugzilla.samba.org/show_bug.cgi?id=11429 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 3faa7dc5a7d39cfdfc908a51e38772fda801c1a3)
* WHATSNEW: Prepare release notes for Samba 4.3.0rc5Stefan Metzmacher2015-09-011-1/+5
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* VERSION: Bump version up to 4.3.0rc5...Stefan Metzmacher2015-09-011-2/+2
| | | | | | ...and re-enable git snapshots. Signed-off-by: Stefan Metzmacher <metze@samba.org>
* VERSION: Release Samba 4.3.0rc4samba-4.3.0rc4Stefan Metzmacher2015-09-011-1/+1
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* WHATSNEW: Update release notes for Samba 4.3.0rc3Stefan Metzmacher2015-09-011-0/+22
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* WHATSNEW: mention improved sparse file supportDavid Disseldorp2015-09-011-0/+7
| | | | | Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
* ldb:wscript: make it possible to build samba with a system ldb againStefan Metzmacher2015-09-011-2/+2
| | | | | | | | | | | | | | | | | | | This fixes a regression in commit fcf4a891945b22dc6eccdc71fd441f1a879f556a. If we check for 'ldb' later the 'pyldb-util' can't depend on the 'ldb' check. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11458 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org> Autobuild-Date(master): Mon Aug 31 18:53:16 CEST 2015 on sn-devel-104 (cherry picked from commit 2947a7041ba22b52a8a4ce0ad5ebc6095ea09ea0) Autobuild-User(v4-3-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-3-test): Tue Sep 1 12:36:48 CEST 2015 on sn-devel-104
* selftest: add a check for disabled change notifyRalph Boehme2015-09-015-2/+126
| | | | | | | | | | | | | | | Bug: https://bugzilla.samba.org/show_bug.cgi?id=11444 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Mon Aug 31 15:50:49 CEST 2015 on sn-devel-104 (cherry picked from commit 770fb8cd07bd047b5206a2a7fe01eb14d9077eea) Autobuild-User(v4-3-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-3-test): Tue Sep 1 01:38:43 CEST 2015 on sn-devel-104
* selftest: add change notify = no to simpleserver envRalph Boehme2015-08-311-0/+1
| | | | | | | | | | | | | | A subsequent patch will use this env in a torture test. The aren't any existing tests that make use of change notify, so disabling change notify in this test environment doesn't impact existing tests. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11444 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit b9c561273b60ea8fe1ff047238013e5cc5411c04)
* notify: check for valid notify_ctx in notify_removeRalph Boehme2015-08-311-0/+5
| | | | | | | | | | | | notify_ctx will be NULL when "change notify = no" is set in smb.conf. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11444 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Reviewed-by: Michael Adam <obnox@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> (cherry picked from commit 098b8a5110b4e1b873196032098807b7922e232c)
* winbind: Remove "have_idmap_config" from winbindd_domainVolker Lendecke2015-08-312-40/+0
| | | | | | | | | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Mon Aug 24 19:19:31 CEST 2015 on sn-devel-104 (cherry picked from commit 617bc3fe611266b8d3d0fd47b839d4ac8ad73f8f) Autobuild-User(v4-3-test): Stefan Metzmacher <metze@samba.org> Autobuild-Date(v4-3-test): Mon Aug 31 13:23:48 CEST 2015 on sn-devel-104
* winbind: Do not look for the domain in wb_gid2sidVolker Lendecke2015-08-311-13/+0
| | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit b62c7e26b4783cdff11e406e4d75bc2e0fba7933)
* winbind: Do not look for the domain in wb_uid2sidVolker Lendecke2015-08-311-13/+0
| | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit 2387d03b8ae9a471694503677667e623dff8ef88)
* idmap: Remove dom_name from wbint_Gid2SidVolker Lendecke2015-08-312-2/+1
| | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit 8856555af43848830b7c1e47765d26ce59dfa62b)
* idmap: Remove dom_name from wbint_Uid2SidVolker Lendecke2015-08-312-2/+1
| | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit d4730474da30c707339e21746c27eed5871cfdfe)
* idmap: Remove "domname" from idmap_gid_to_sidVolker Lendecke2015-08-313-6/+4
| | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit 2f4dad52c77c7d0aaad2a4ccc0cb7dff0d129612)
* idmap: Remove "domname" from idmap_uid_to_sidVolker Lendecke2015-08-313-6/+4
| | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit 0f8c9b8d7f9a3ca288e42d857d253137e048d4bc)
* idmap: Remove "domname" from idmap_backends_unixid_to_sidVolker Lendecke2015-08-314-9/+7
| | | | | | | Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit ac4cc243771fc3273872547087679db21c9bb1cb)
* idmap: Use a range search in idmap_backends_unixid_to_sidVolker Lendecke2015-08-311-1/+11
| | | | | | | | | This obsoletes the domain name in the xid2sid calls Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit ad626b9e6b3c200c70b0d840c956f7b6fff20660)
* idmap: Initialize all idmap domains at startupVolker Lendecke2015-08-311-90/+109
| | | | | | | | | | | | | | | | | | | | | So far we have initialized idmap domains on demand indexed by name. For sid2xid this works okay, because we could do lookupsids before and thus get the name. For xid2sid this is more problematic. We have to rely on enumtrustdoms to work completely, and we have to look at the list of winbind domains in the parent to get the domain name. Relying on domain->have_idmap_config is not particularly nice. This patch re-works initialization of idmap domains by scanning all parametric parameters, scanning for :backend configuration settings. This way we get a complete list of :range definitions. This means we can rely on the idmap domain array to be complete. This in turn means we can live without the domain name to find a domain, we can do a range search by uid or gid. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit ef0c91195533d95ba4fb7947ff5f69c20aa677b8)
* idmap: Move idmap_init() under the static varsVolker Lendecke2015-08-311-15/+15
| | | | | | | | | Just moving code, idmap_init will need to reference the variables Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit d36de86639b7782e1e959d61917d8f19fdfc902c)
* loadparm3: Add lp_wi_scan_global_parametrics()Volker Lendecke2015-08-312-0/+82
| | | | | | | | | | | | This routine takes a regex and goes through all parametric parameters in [global], matching the regex. It can easily be extended to also look at shares, but right now it will only be used to list all idmap config domain names. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464 (cherry picked from commit 443dd9bbbc641ede10a2a3708465f61ea3dfbde3)
* lib/crypto: make it possible to use only parts of aes.[ch]Stefan Metzmacher2015-08-312-1/+14
| | | | | | | | | | | | | | This can be used in order to optimize some parts later. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11451 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu Aug 27 23:23:54 CEST 2015 on sn-devel-104 (cherry picked from commit d9166eb2d7880d0717dbf231b02d50c2a331827e)
* lib/crypto: sync AES_cfb8_encrypt() from heimdalStefan Metzmacher2015-08-312-20/+25
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=11451 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit aaad9e9618686066ed24fef43cb3872fb9861678)
* lib/crypto: make use of aes_test.h in aes_gcm_128_test.cStefan Metzmacher2015-08-311-221/+137
| | | | | | | | BUG: https://bugzilla.samba.org/show_bug.cgi?id=11451 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit e9d3379d72f5698d579842d2f1aafa4fd0dde56f)