rust-ieee802.15.4 icon indicating copy to clipboard operation
rust-ieee802.15.4 copied to clipboard

Rust implementation of the IEEE 802.15.4 standard

Results 11 rust-ieee802.15.4 issues
Sort by recently updated
recently updated
newest added

Updates the requirements on [aes](https://github.com/RustCrypto/block-ciphers) to permit the latest version. Commits dd29253 aes v0.8.3 (#368) eb309c6 aes: refactor ARMv8 expand_key (#367) 8d03900 aes: support aes_armv8 on Rust 1.61+ using asm!...

dependencies

Updates the requirements on [ccm](https://github.com/RustCrypto/AEADs) to permit the latest version. Commits 2396b36 ccm v0.5.0 (#449) 6571311 aes-siv v0.7.0 (#448) cc0b7d6 Make ChaChaPoly1305 explicitly implement ZeroizeOnDrop (#447) d6f510e Enable getrandom feature...

dependencies

Updates the requirements on [cipher](https://github.com/RustCrypto/traits) to permit the latest version. Commits 0af93f6 cipher: release v0.4.4 (#1278) 0de66ad Fix unsoundness with block size equal to zero (#1277) 48517bc elliptic-curve: remove redundant...

dependencies

Updates the requirements on [hash32](https://github.com/japaric/hash32) to permit the latest version. Changelog Sourced from hash32's changelog. [v0.3.1] - 2022-08-09 Fixed fixed downstream clippy warnings around murmur3::Hasher [v0.3.0] - 2022-04-29 Changed [breaking-change]...

dependencies

hi there, thanks for all your work on this it's _great_ for getting going with 802.15.4. i've been working on some MACs over at [rust-iot/rust-lpwan](https://github.com/rust-iot/rust-lpwan) and have needed both `802.15.4-2015`...

status: waiting on author

I've handwritten all the code I needed for encoding and decoding frames. While this gets the job done, it's an error-prone approach, and hard to maintain. Ideally, all this code...

enhancement
help wanted
good first issue

``` warning: this expression borrows a reference (`&[u8]`) that is immediately dereferenced by the compiler Warning: --> src/mac/beacon.rs:105:19 | 105 | check_len(&bytes, 2)?; | ^^^^^^ help: change this to: `bytes`...

help wanted
good first issue

For a project I want to not just parse beacon frames but also send them. So I exposed all needed fields to create them. Since the lists were represented by...