summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-27Fix mad merge regressionDipannita Shaw
2021-04-27Merge remote-tracking branch 'upstream/master'Dipannita Shaw
2021-04-27Fix mad merge regressionDipannita Shaw
2021-04-26Fixing UcmUcsiAcpiSample driver sample failure in EWDK with VS16.6.0Dipannita Shaw
2021-04-22Driver signing changes for driver samples (#612)Dipannita Shaw
2021-04-22Merge pull request #615 from zeusk/user/shagu/idd-sampleApp-fixtobafo19
User/shagu/idd sample app fix
2021-04-22Fix build issues with WDK 10.0.19041Shantanu Gupta
2021-04-20Driver signing changes for driver samplesDipannita Shaw
2021-04-20Buses samples should use ExAllocatePool2 (#611)matwilli
* Updating samples to utilize ExAllocatePool2 which zero-initializes pool allocations
2021-04-16Remove duplicate VHIDMINI_DEVICE_STRING define (#579)Fredrik Orderud
The same define is also found 4 lines below.
2021-04-16Remove duplicate markdown fileWei Mao
2021-04-16Change mhtml to markdownWei Mao
2021-04-16Merge pull request #610 from zlockard/patch-5tobafo19
Update SampleBarcodeScannerDrv.inf
2021-04-16Merge pull request #609 from zlockard/patch-4tobafo19
Update SampleMagneticStripeReaderDrv.inf
2021-04-15Update SampleBarcodeScannerDrv.infzlockard
2021-04-15Update SampleMagneticStripeReaderDrv.infzlockard
2021-04-14Merge pull request #608 from zlockard/patch-3tobafo19
Update SampleMagneticStripeReaderDrv.inf
2021-04-14Merge pull request #607 from zlockard/patch-2tobafo19
Update SampleBarcodeScannerDrv.inf
2021-04-14Update SimpleAudioSample and Sysvad to use SHA256 signing. (#606)judzmura
* Update simpleAudioSample to use SHA256 signing. * Update sysvad to use SHA256 driver signing.
2021-04-13Update SampleMagneticStripeReaderDrv.infzlockard
2021-04-13Update SampleBarcodeScannerDrv.infzlockard
2021-03-31Merge pull request #599 from vtest-ms/msvmurta-windows-driver-samplestobafo19
Set sha256 as the default file digest algorithm for avshws and avscamera
2021-03-31set sha256 as the default file digest algorithmfor avshws and avscameraVictor Murta
2021-03-30Update IddCx and KMDOD samples to use SHA256 (#593)Shantanu Gupta
* Switch to SHA256 for Iddcx and KMDOD samples * Undo changes to SampleDisplay.vcxproj.Filters Co-authored-by: Shantanu Gupta <[email protected]>
2021-03-29User/jeleung/camera/fixdmft (#594)j-leungyy
* add config for nudget * add IMFSampleAllocatorControl to QueryInterface
2021-03-29Adds the HLK APO tests to the public github for windows-driver-samples. (#597)Brandon Obermeyer
This change is to add the HLK APO tests to the windows-driver-samples to allow for any partners to take a look at the tests to know what exactly is being tested when they run the HLK APO tests.
2021-03-25Merge pull request #596 from NateD-MSFT/update-sdv-shaNateD-MSFT
Update SDV sample drivers to use SHA-256 signing.
2021-03-25Update SDV sample drivers to use SHA-256 signing.natede-MSFT
2021-03-25Merge pull request #595 from dkluemke/user/dkluemke/toastmonSigningNateD-MSFT
DV-FailDriver-WDM: Add pnplockdown to INF and set file signing algorithm to sha256
2021-03-25Add pnplockdown to INF and set file signing algorithm to sha256Drew Kluemke
2021-03-19Merge remote-tracking branch 'upstream/master'Shantanu Gupta
2021-03-18kcs - add sha256, cleanup, use Ctrpp taskDoug Cook
- Set FileDigestAlgorithm=sha256 - Replace custom "Run Ctrpp" task with Ctrpp task. - Minor cleanup and comments.
2021-03-05Merge pull request #561 from vtest-ms/mastertobafo19
Updated default file digest algorithm to sha256
2021-03-04Change simbatt sample to sign with sha256 instead of sha1 (#585)rasunder-ms
2021-03-01Add SimpleAudioSample driver. (#577)judzmura
* Add SimpleAudioSample driver. * Fixed outdated copyrights and updated readme. * Added Filters as a dependency for Main and defined FileDigestAlgorithm as SHA256.
2021-02-22remove changes for package testPrashant Chahar
2021-02-22Merge branch 'master' of https://github.com/microsoft/Windows-driver-samplesPrashant Chahar
2021-02-22Update a sample to test nugetPrashant Chahar
2021-02-22Update ndis filter driver file digest algorithm to SHA256. (#580)bodengMS
2021-02-05Update sensors drivers (#576)robert-wu-ms
I looked at the commits of all the other projects that added sha256 to the driver sign and did a find and replace.
2021-01-22Use SHA256 for wdfserial and usbfx2 driver signing (#560)OsborneSDev
Sets file digest algorithm for wdfserial and usbfx2 drivers to SHA256 https://dev.azure.com/microsoft/OS/_workitems/edit/31022366 https://dev.azure.com/microsoft/OS/_workitems/edit/31022410 **How Tested:** Compiling the two driver solutions shows they are correctly signed using SHA256
2021-01-22Improvements to WFP Inspect Sample (#516)houha2
Changes a `NT_ASSERT` to match what the comment above is saying, the previous version caused a system crash if the packet was not inbound and had a auth decision made already. The comment ` // Skip pended connections in the list, for which the auth decision is already taken.` ` // They should not be for inbound connections.` to my understanding means inbound connections should be ignored and ignore connections for which the auth decision was already made. The latter is checked by: ` if (packet->authConnectDecision == 0)` which keeps `found` equal to `FALSE` triggering the packet and list entry to be set to `NULL` here: `if (!found) { listEntry = NULL; packet = NULL; }` Change also updates the .sln and .vxproj files so the sample compiles on VS2019 without any changes - addressing #366 Co-authored-by: Elaine Houha <[email protected]>
2021-01-22msnmntr: Replace ExAllocatePoolWithTag with ExAllocatePoolZero (#494)houha2
Updated sample to remove deprecated API usage (ExAllocatePoolWithTag to ExAllocatePoolZero) Co-authored-by: Elaine Houha <[email protected]>
2021-01-22WFPSampler: Replaces ExAllocatePoolWithTag to ExAllocatePoolZero (#490)houha2
* replaces ExAllocatePoolWithTag to ExAllocatePoolZero * adds marco for downlevel support * removes unneeded change * changes comment to reflect new API usage * fixes alignment issues * changes spacing Co-authored-by: Elaine Houha <[email protected]>
2021-01-14Replace ExAllocatePoolWithTag with new API ExAllocatePoolZero. (#486)Andrew Maczugowski
Co-authored-by: Drew Maczugowski <[email protected]>
2021-01-14classpnp: Use ExAllocatePoolZero instead of ExAllocatePoolWithTag (#485)Andrew Maczugowski
* Replace unsafe allocation API with ExAllocatePool2 * Fix for downlevel support. Co-authored-by: Drew Maczugowski <[email protected]>
2021-01-12 Bug 31022454 Update Windows-driver-samples to use SHA256 for signing (#562)Henyin-Microsoft
Followed the instruction to change the Algorithm to use SAH256 Right click on driver project in Visual Studio and select "Properties" Select Configuration: All Configurations and Platform: All Platforms Select "Driving Signing" from the Configuration Properties Enter sha256 for "File Digest Algorithm" Apply changes and exit Properties Save project
2020-12-17Updated default file digest algorithm to sha256Victor Murta
2020-12-16Use SHA256 for ndisprot60's driver signing (#558)253337yjqms
2020-12-02Fix UDP inbound reinject scenario (#551)243329Jesse
Modify the inbound NBL's UDP port # to that of the original outbound traffic, in order to meet the inbound filter conditions