rustls-ffi icon indicating copy to clipboard operation
rustls-ffi copied to clipboard

Use Rustls from any language

Results 52 rustls-ffi issues
Sort by recently updated
recently updated
newest added

In places where these aren't needed, the code looks verbose and unidiomatic to me. How would you feel about removing these? In general I'm pretty sure we can trust the...

Follow-up to https://github.com/rustls/rustls-ffi/pull/412 I think we can add macos to the matrix by: 1. using brew to install `pkg-config` 2. switching out the `CARGO_C_FILE` var in the "install cargo-c" step...

Followup from https://github.com/rustls/rustls-ffi/pull/421 and https://github.com/rustls/rustls-ffi/issues/409 The `rustls_client_config_builder_new` docs say: ``` /// This starts out with no trusted roots. /// Caller must add roots with rustls_client_config_builder_load_roots_from_file /// or provide a custom...

next-major-release

This would allow rustls-ffi to be used as a system library in Linux distributions.

This function was written before we started using rustls_str, and it uses the pattern of writing to a caller-provided buffer. That pattern is quite awkward to use, and rustls_str fits...

next-major-release

This function is currently: https://github.com/rustls/rustls-ffi/blob/78736fb730ffedc6bbd8acf70aa3ab08ba2be467/src/server.rs#L654-L675 Note that the only possible error return cases are that the inputs were NULL. Our API guidelines state that in such a case, we don't...

next-major-release

This is a tracking issue. The first link in each line is to the rustls documentation. The second link, when present, is to a rustls-ffi issue. Before working on one...

In https://github.com/rustls/rustls-ffi/pull/253 there was Cmake support integrated, but I'm not sure I understand the motivation. It's described as being a cross-platform solution, but we only test it for Windows (in...

When rustls-ffi started, it was producing incompatible API changes in the C API at a faster rate than rustls itself, so I chose an independent versioning scheme. Now the rate...

I have been working on JavaScript bindings for rustls-ffi and found these "improvements" useful while doing so. Maybe you would be willing to accept them as a PR? If so,...