gitextract_ido0h2qq/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .rustfmt.toml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── iostest/ │ ├── Cargo.toml │ ├── ios-test-harness/ │ │ ├── ios-test-harness/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── ios_test_harnessApp.swift │ │ ├── ios-test-harness.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── ios-test-harnessTests/ │ │ │ └── ios_test_harnessTests.swift │ │ └── test-runner/ │ │ ├── TestRunner.swift │ │ ├── create-library.sh │ │ ├── remove-library.sh │ │ ├── test-Bridging-Header.h │ │ └── test.h │ ├── src/ │ │ └── lib.rs │ └── tests/ │ └── ios_macos.rs ├── security-framework/ │ ├── Cargo.toml │ ├── THIRD_PARTY │ ├── examples/ │ │ ├── client.rs │ │ ├── find_internet_password.rs │ │ └── set_internet_password.rs │ ├── src/ │ │ ├── access_control.rs │ │ ├── authorization.rs │ │ ├── base.rs │ │ ├── certificate.rs │ │ ├── cipher_suite.rs │ │ ├── cms.rs │ │ ├── identity.rs │ │ ├── import_export.rs │ │ ├── item.rs │ │ ├── key.rs │ │ ├── lib.rs │ │ ├── os/ │ │ │ ├── macos/ │ │ │ │ ├── access.rs │ │ │ │ ├── certificate.rs │ │ │ │ ├── certificate_oids.rs │ │ │ │ ├── code_signing.rs │ │ │ │ ├── digest_transform.rs │ │ │ │ ├── encrypt_transform.rs │ │ │ │ ├── identity.rs │ │ │ │ ├── import_export.rs │ │ │ │ ├── item.rs │ │ │ │ ├── key.rs │ │ │ │ ├── keychain.rs │ │ │ │ ├── keychain_item.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── passwords.rs │ │ │ │ ├── secure_transport.rs │ │ │ │ └── transform.rs │ │ │ └── mod.rs │ │ ├── passwords.rs │ │ ├── passwords_options.rs │ │ ├── policy.rs │ │ ├── random.rs │ │ ├── secure_transport.rs │ │ ├── trust.rs │ │ └── trust_settings.rs │ └── test/ │ ├── ca.der │ ├── cms/ │ │ ├── encrypted.p7m │ │ ├── keystore.p12 │ │ ├── signed-encrypted.p7m │ │ └── signed.p7m │ ├── dhparam.der │ ├── regen-certs.sh │ ├── server.der │ ├── server.key │ ├── server.keychain │ └── server.p12 ├── security-framework-sys/ │ ├── Cargo.toml │ └── src/ │ ├── access.rs │ ├── access_control.rs │ ├── authorization.rs │ ├── base.rs │ ├── certificate.rs │ ├── certificate_oids.rs │ ├── cipher_suite.rs │ ├── cms.rs │ ├── code_signing.rs │ ├── digest_transform.rs │ ├── encrypt_transform.rs │ ├── identity.rs │ ├── import_export.rs │ ├── item.rs │ ├── key.rs │ ├── keychain.rs │ ├── keychain_item.rs │ ├── lib.rs │ ├── policy.rs │ ├── random.rs │ ├── secure_transport.rs │ ├── transform.rs │ ├── trust.rs │ └── trust_settings.rs └── systest/ ├── Cargo.toml ├── build.rs └── src/ └── main.rs