Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ blake3 = "1.5.5"
bytemuck = { version = "1.21.0", features = ["must_cast"] }
cpufeatures = "0.2.17"
criterion = { version = "0.8", features = ["async_tokio", "html_reports"] }
cryprot-codes = { version = "0.2.0", path = "cryprot-codes" }
cryprot-core = { version = "0.2.0", path = "cryprot-core" }
cryprot-net = { version = "0.2.0", path = "cryprot-net" }
cryprot-pprf = { version = "0.2.0", path = "cryprot-pprf" }
cryprot-codes = { version = "0.2.1", path = "cryprot-codes" }
cryprot-core = { version = "0.3.0", path = "cryprot-core" }
cryprot-net = { version = "0.2.1", path = "cryprot-net" }
cryprot-pprf = { version = "0.2.1", path = "cryprot-pprf" }
curve25519-dalek = "4.1.3"
fastdivide = "0.4.2"
futures = "0.3.30"
Expand Down
13 changes: 13 additions & 0 deletions cryprot-codes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1](https://github.com/robinhundt/CryProt/compare/cryprot-codes-v0.2.0...cryprot-codes-v0.2.1) - 2026-01-21

### Other
- update dependencies
2 changes: 1 addition & 1 deletion cryprot-codes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2024"
keywords = ["expand-convolute"]
license = "MIT"
name = "cryprot-codes"
version = "0.2.0"
version = "0.2.1"

authors.workspace = true
repository.workspace = true
Expand Down
22 changes: 22 additions & 0 deletions cryprot-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.0](https://github.com/robinhundt/CryProt/compare/cryprot-core-v0.2.0...cryprot-core-v0.3.0) - 2026-01-21

### Removed
- [**breaking**] remove `nightly` feature ([#30](https://github.com/robinhundt/CryProt/pull/30))

### Changed
- set is_nightly cfg in build.rs if using nightly compiler ([#30](https://github.com/robinhundt/CryProt/pull/30))
- refactor AVX2 transpose for better understandability and less use of unsafe ([#13](https://github.com/robinhundt/CryProt/pull/13))
- remove unsafe from portable transpose implementation ([#14](https://github.com/robinhundt/CryProt/pull/14))


### Other
- update dependencies
2 changes: 1 addition & 1 deletion cryprot-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2024"
keywords = ["cryptography", "mpc"]
license = "MIT"
name = "cryprot-core"
version = "0.2.0"
version = "0.3.0"

authors.workspace = true
repository.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions cryprot-net/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1](https://github.com/robinhundt/CryProt/compare/cryprot-net-v0.2.0...cryprot-net-v0.2.1) - 2026-01-21

### Other
- update dependencies
2 changes: 1 addition & 1 deletion cryprot-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2024"
keywords = ["networking", "quic"]
license = "MIT"
name = "cryprot-net"
version = "0.2.0"
version = "0.2.1"

authors.workspace = true
repository.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions cryprot-ot/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1](https://github.com/robinhundt/CryProt/compare/cryprot-ot-v0.2.0...cryprot-ot-v0.2.1) - 2026-01-21

### Security

- fix silent OT malicious security ([#23](https://github.com/robinhundt/CryProt/pull/23))
2 changes: 1 addition & 1 deletion cryprot-ot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2024"
keywords = ["iknp", "kos", "oblivious-transfer", "silent-ot", "simplest-ot"]
license = "MIT"
name = "cryprot-ot"
version = "0.2.0"
version = "0.2.1"

authors.workspace = true
repository.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions cryprot-pprf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1](https://github.com/robinhundt/CryProt/compare/cryprot-pprf-v0.2.0...cryprot-pprf-v0.2.1) - 2026-01-21

### Other

- update dependencies
2 changes: 1 addition & 1 deletion cryprot-pprf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2024"
keywords = ["mpc", "pprf", "silent-ot"]
license = "MIT"
name = "cryprot-pprf"
version = "0.2.0"
version = "0.2.1"

authors.workspace = true
repository.workspace = true
Expand Down