• Home
Name
Date
Size
#Lines
LOC

..--

.cargo/03-May-2024-32

examples/03-May-2024-159127

patches/03-May-2024-922884

src/03-May-2024-30,95322,167

test/03-May-2024-493470

.cargo_vcs_info.jsonD03-May-2024101 66

Android.bpD03-May-20242.6 KiB7469

CHANGELOG.mdD03-May-202425.8 KiB714498

Cargo.lockD03-May-202411.9 KiB464408

Cargo.tomlD03-May-20241.3 KiB6655

Cargo.toml.origD03-May-2024842 3731

LICENSED03-May-2024618 1612

METADATAD03-May-2024596 2422

MODULE_LICENSE_APACHE2D03-May-20240

OWNERSD03-May-2024118 43

README.androidD03-May-20241.7 KiB4234

README.mdD03-May-2024830 2314

TEST_MAPPINGD03-May-2024543 2423

build.rsD03-May-20242.9 KiB10785

cargo2android.jsonD03-May-2024221 1211

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[![crates.io](https://img.shields.io/crates/v/openssl.svg)](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