• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Mar-2021-

src/H15-Mar-2021-1,6171,282

.cargo-checksum.jsonH A D15-Mar-20211.1 KiB11

CODE_OF_CONDUCT.mdH A D15-Mar-2021691 1611

Cargo.tomlH A D15-Mar-20211.5 KiB6452

LICENSEH A D15-Mar-202116.3 KiB374293

README.mdH A D15-Mar-20211.2 KiB2415

README.md

1# rust-ece   [![Build Status]][circleci] [![Latest Version]][crates.io]
2
3[Build Status]: https://circleci.com/gh/mozilla/rust-ece.svg?style=svg
4[circleci]: https://circleci.com/gh/mozilla/rust-ece
5[Latest Version]: https://img.shields.io/crates/v/ece.svg
6[crates.io]: https://crates.io/crates/ece
7
8*This crate has not been security reviewed yet, use at your own risk ([tracking issue](https://github.com/mozilla/rust-ece/issues/18))*.
9
10[ece](https://crates.io/crates/ece) is a Rust implementation of the HTTP Encrypted Content-Encoding standard (RFC 8188). It is a port of the [ecec](https://github.com/web-push-libs/ecec) C library.
11This crate is destined to be used by higher-level Web Push libraries, both on the server and the client side.
12
13[Documentation](https://docs.rs/ece/)
14
15## Cryptographic backends
16
17This crate is designed to be used with different crypto backends. At the moment only [openssl](https://github.com/sfackler/rust-openssl) is supported.
18
19## Implemented schemes
20
21Currently, two HTTP ece schemes are available to consumers of the crate:
22- The newer [RFC8188](https://tools.ietf.org/html/rfc8188) `aes128gcm` standard.
23- The legacy [draft-03](https://tools.ietf.org/html/draft-ietf-httpbis-encryption-encoding-03) `aesgcm` scheme.
24