openwsn-berkeley / lakers

EDHOC implemented in Rust, optimized for microcontrollers, with bindings for C and Python.
https://crates.io/crates/lakers
BSD 3-Clause "New" or "Revised" License
12 stars 10 forks source link

License ambiguity #152

Closed chrysn closed 7 months ago

chrysn commented 7 months ago

The license = "..." fields of the crates contain the identifier "BSD", which is not a recognized SPDX identifier (even though that's the list into which that key maps).

From the LICENSE.md file, my best guess is that you intend to put "BSD-3-Clause" in there. When addressed after #146, this can easily be addressed widely by placing a license term in the workspace Cargo.toml, and linking it from the individual crates using license.workspace = true.

malishav commented 7 months ago

Yes, confirming BSD-3-Clause is the right license.

geonnave commented 7 months ago

Solved in #146