RustCrypto / RustCrypto/formats

der: make `Length` a newtype of `usize`

Open
#1,954 4 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Rust
Stars
338
Forks
188
Avg merge
4d 6h
Merged PRs (30d)
15

Description

Length is currently a newtype of u32. This is because the Decode and Encode impls are specialized to 32-bit integers:

If the implementation could support any usize, we could change the internal type to usize which would allow infallible conversions to/from usize.

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start in der/src/length.rs at the Decode implementation around lines 272–273 and the Encode implementation around lines 309–315. Read how these implementations are specialized to 32-bit integers, then verify that the intended done state is a Length newtype backed by usize with support for usize conversions without fallibility.

Written by the indexing model from the issue text.

Assessment

Tech stack
rust
Domain
cryptography
Issue type
Refactor
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.