9 unstable releases (3 breaking)

0.5.1 Jan 10, 2024
0.5.0 Jan 8, 2024
0.4.0 May 19, 2023
0.3.1 Feb 23, 2023
0.2.0 Aug 4, 2022

#365 in Cryptography

Download history 192/week @ 2024-01-02 323/week @ 2024-01-09 353/week @ 2024-01-16 400/week @ 2024-01-23 458/week @ 2024-01-30 225/week @ 2024-02-06 434/week @ 2024-02-13 448/week @ 2024-02-20 256/week @ 2024-02-27 355/week @ 2024-03-05 725/week @ 2024-03-12 533/week @ 2024-03-19 407/week @ 2024-03-26 233/week @ 2024-04-02 157/week @ 2024-04-09 616/week @ 2024-04-16

1,455 downloads per month
Used in 2 crates (via payjoin)

MIT/Apache

145KB
3.5K SLoC

Oblivious HTTP

This is a rust implementation of Oblivious HTTP.

This work is undergoing active revision in the IETF and so are these implementations. Use at your own risk.

This crate uses either hpke or NSS for cryptographic primitives.

Using

The API documentation is currently sparse, but the API is fairly small and descriptive.

The ohttp crate has the following features:

  • client enables the client-side processing of oblivious HTTP messages: encrypting requests and decrypting responses. This is enabled by default.

  • server enables the server-side processing of oblivious HTTP messages: decrypting requests and encrypting responses. This is enabled by default.

  • rust-hpke selects the hpke crate for HPKE encryption. This is enabled by default and cannot be enabled at the same time as nss.

  • nss selects NSS. This is disabled by default and cannot be enabled at the same time as rust-hpke.

Dependencies

~0.5–4MB
~50K SLoC