This crate provides safe bindings to the Endpoint Security OSX Library.
add endpointsecurity-rs
as a dependency to your project
[dependencies]
endpointsecurity-rs = "0.1.1"
You will have to disable SIP if you want to use endpoint security while development without signing the executables with Apple.
With SIP disabled, you can use the following command to sign your executables with entitlements.
codesign --entitlements [entitlements_file] --force -s - [filename]
You can play around with examples in the crate to test out the crate. To build follow the commands below
```
cargo build --example disallow_rename
codesign --entitlements Extension.entitlements --force -s - ./target/debug/examples/disallowrename ./disallowrename ```