gitextract_io839hx9/ ├── .delivery/ │ └── project.toml ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ ├── branchcleanup.yml │ └── delivery.yml ├── .gitignore ├── .rubocop.yml ├── .vscode/ │ └── extensions.json ├── Berksfile ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── TESTING.md ├── appveyor.yml ├── chefignore ├── kitchen.appveyor.yml ├── kitchen.yml ├── libraries/ │ ├── powershell_helper.rb │ ├── registry_helper.rb │ ├── version.rb │ ├── version_helper.rb │ ├── windows_helper.rb │ ├── windows_privileged.rb │ └── wmi_helper.rb ├── metadata.rb ├── providers/ │ └── dns.rb ├── recipes/ │ └── default.rb ├── resources/ │ ├── certificate_binding.rb │ ├── dns.rb │ ├── http_acl.rb │ ├── schannel.rb │ ├── user_privilege.rb │ └── zipfile.rb ├── spec/ │ └── spec_helper.rb └── test/ ├── cookbooks/ │ └── test/ │ ├── files/ │ │ ├── Asimov.otf │ │ ├── CodeNewRoman.otf │ │ ├── DigiCertAssuredIDCAG2.crt │ │ ├── GeoTrust_Primary_CA.pem │ │ ├── GeoTrust_Universal_CA.pem │ │ ├── ThawteRSACA2018.crt │ │ ├── base64-cert2.cer │ │ ├── der-cert1.cer │ │ ├── test-cert.cer │ │ ├── test-cert.pfx │ │ ├── test-cert.pvk │ │ ├── test-pfx-certificate.pfx │ │ ├── test_der.der │ │ └── test_p7b.p7b │ ├── metadata.rb │ └── recipes/ │ ├── everything.rb │ ├── http_acl.rb │ ├── schannel.rb │ ├── user_privilege.rb │ └── zipfile.rb └── integration/ ├── http_acl/ │ └── http_acl_spec.rb └── schannel/ └── schannel_spec.rb