libsrtp 0.1.0

a pure rust implementation of SRTP
Documentation
[badges.maintenance]
status = "experimental"

[dependencies.aes]
version = "0.8"

[dependencies.aes-gcm]
version = "0.10.3"

[dependencies.constant_time_eq]
version = "0.4.2"

[dependencies.ctr]
version = "0.9"

[dependencies.hmac]
version = "0.12.1"

[dependencies.num-bigint]
version = "0.4.6"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.sha1]
version = "0.10.6"

[dependencies.zeroize]
features = ["zeroize_derive"]
version = "1.8.1"

[dev-dependencies.anyhow]
version = "1.0.99"

[lib]
name = "libsrtp"
path = "src/lib.rs"

[package]
authors = ["Johan Pascal <jeannolapin@laposte.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "network-programming", "multimedia"]
description = "a pure rust implementation of SRTP"
documentation = "https://docs.rs/libsrtp"
edition = "2024"
homepage = "https://github.com/jeannotlapin/libsrtp-rs/tree/master/libsrtp"
keywords = ["srtp", "media-stream", "encryption", "authentication", "real-time"]
license = "MIT OR Apache-2.0"
name = "libsrtp"
readme = "README.md"
repository = "https://github.com/jeannotlapin/libsrtp-rs"
resolver = "2"
version = "0.1.0"

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "mkis"
path = "tests/mkis.rs"

[[test]]
name = "multithread"
path = "tests/multithread.rs"