Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.cargo/ | 03-May-2024 | - | 3 | 2 | ||
examples/ | 03-May-2024 | - | 159 | 127 | ||
patches/ | 03-May-2024 | - | 922 | 884 | ||
src/ | 03-May-2024 | - | 30,953 | 22,167 | ||
test/ | 03-May-2024 | - | 493 | 470 | ||
.cargo_vcs_info.json | D | 03-May-2024 | 101 | 6 | 6 | |
Android.bp | D | 03-May-2024 | 2.6 KiB | 74 | 69 | |
CHANGELOG.md | D | 03-May-2024 | 25.8 KiB | 714 | 498 | |
Cargo.lock | D | 03-May-2024 | 11.9 KiB | 464 | 408 | |
Cargo.toml | D | 03-May-2024 | 1.3 KiB | 66 | 55 | |
Cargo.toml.orig | D | 03-May-2024 | 842 | 37 | 31 | |
LICENSE | D | 03-May-2024 | 618 | 16 | 12 | |
METADATA | D | 03-May-2024 | 596 | 24 | 22 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
OWNERS | D | 03-May-2024 | 118 | 4 | 3 | |
README.android | D | 03-May-2024 | 1.7 KiB | 42 | 34 | |
README.md | D | 03-May-2024 | 830 | 23 | 14 | |
TEST_MAPPING | D | 03-May-2024 | 543 | 24 | 23 | |
build.rs | D | 03-May-2024 | 2.9 KiB | 107 | 85 | |
cargo2android.json | D | 03-May-2024 | 221 | 12 | 11 |
README.android
1## Steps for updating this crate 2 31. In order to run cargo2android, for this crate, the BoringSSL rust bindings first needs to be 4 built. Copy `googletest` to `boringssl`, which is needed to build the rust bindings 5 6 ``` 7 $ cp -r external/googletest/googletest external/boringssl/src/third_party/ 8 ``` 92. Build the rust bindings (More information at 10 https://boringssl.googlesource.com/boringssl/+/HEAD/BUILDING.md) 11 12 ``` 13 $ cd external/boringssl 14 $ mkdir build && cd build 15 $ cmake .. -DRUST_BINDINGS=x86_64-unknown-linux-gnu 16 $ make 17 ``` 183. Run `tools/external_updater/updater.sh update rust/crates/openssl`. Cargo errors causing the 19 command to fail are expected (since the boringSSL crate is outside of the `openssl` directory, 20 redshell is not able to access it). 214. The repository should now be in a `tmp_auto_upgrade` branch, and the Android.bp will contain 22 some error message. 235. Run cargo2android 24 25 ``` 26 $ cargo2android.py --config ./cargo2android.json 27 ``` 286. Clean up the changes in external/boringssl repository, and double check that the resulting 29 Android.bp builds correctly by running `m libopenssl`. 307. Commit the changes and upload the CL. 318. `external/rust/crates/openssl-macros` should also be updated at the same time. 32 33## Generating patch files 34 35If you make changes to this repo that is not in upstream `rust-openssl` yet, please generate a 36patch file to keep track of those changes. 37 381. Commit your changes 392. Create the patch file: `git diff -u HEAD~ > <XXXX-topic>.diff` where XXXX is the number to track 40 the order of the patches to apply. 413. Amend the patch file into your CL `git add -A && git commit --amend` 42
README.md
1# rust-openssl 2 3[](https://crates.io/crates/openssl) 4 5OpenSSL bindings for the Rust programming language. 6 7[Documentation](https://docs.rs/openssl). 8 9## Release Support 10 11The current supported release of `openssl` is 0.10 and `openssl-sys` is 0.9. 12 13New major versions will be published at most once per year. After a new 14release, the previous major version will be partially supported with bug 15fixes for 3 months, after which support will be dropped entirely. 16 17### Contribution 18 19Unless you explicitly state otherwise, any contribution intentionally 20submitted for inclusion in the work by you, as defined in the Apache-2.0 21license, shall be dual licensed under the terms of both the Apache License, 22Version 2.0 and the MIT license without any additional terms or conditions. 23