Use boringssl prf for tls1.2
This commit is contained in:
parent
bd80bfc4d7
commit
d38412a3bd
9 changed files with 285 additions and 7 deletions
15
boring-sys-additions/Cargo.toml
Normal file
15
boring-sys-additions/Cargo.toml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
[package]
|
||||
name = "boring-sys-additions"
|
||||
version = "0.0.1"
|
||||
authors = ["Jan Rüth <boring-rustls-provider@djiehmail.com>"]
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "Boring-sys additions"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
boring-sys = { workspace = true }
|
||||
|
||||
|
||||
|
||||
|
||||
22
boring-sys-additions/src/lib.rs
Normal file
22
boring-sys-additions/src/lib.rs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
use std::ffi;
|
||||
|
||||
extern "C" {
|
||||
/// Calculates `out_len` bytes of the TLS PDF, using `digest`, and
|
||||
/// writes them to `out`. It returns one on success and zero on error.
|
||||
///
|
||||
/// This isn't part of the public headers in `BoringSSL` but it is exported
|
||||
/// in `crypto/fipsmodule/tls/internal.h` :)
|
||||
pub fn CRYPTO_tls1_prf(
|
||||
digest: *const boring_sys::EVP_MD,
|
||||
out: *mut u8,
|
||||
out_len: usize,
|
||||
secret: *const u8,
|
||||
secret_len: usize,
|
||||
label: *const u8,
|
||||
label_len: usize,
|
||||
seed1: *const u8,
|
||||
seed1_len: usize,
|
||||
seed2: *const u8,
|
||||
seed2_len: usize,
|
||||
) -> ffi::c_int;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue