-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add "HumanBinaryData" as an alternative to "Base64UrlSafeData" #354
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
micolous
requested review from
Firstyear,
yaleman and
agrinman
as code owners
September 29, 2023 02:30
Closed
micolous
force-pushed
the
human
branch
3 times, most recently
from
September 29, 2023 06:30
b26169b
to
1d7d75d
Compare
2 tasks
Firstyear
approved these changes
Sep 30, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is a great idea and a great way to approach this. Great work @micolous <3
kikuomax
pushed a commit
to codemonger-io/webauthn-rs
that referenced
this pull request
Nov 24, 2024
…m#354) * Add "HumanBinaryData" as alternative to "Base64UrlSafeData" (kanidm#352) * Add bytes support to Base64UrlSafeData, and copy across the tests * Rework the docs * dedupe functionality into macros, make tests consistent * more tests and conversions * move Borrow impl into common * add some more vec features * fix clippy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related to issue #352, it doesn't fix things, but it's a start.
HumanBinaryData
uses a more efficient "bytes" format when using non-human-readable serialisation formats (like CBOR). The deserialiser still usesdeserialize_any
– I haven't got a great way around this yet.I've done a few things differently to
Base64UrlSafeData
; for example, this doesn't implementDisplay
orFromStr
– they're different to whatVec<u8>
does, and we should move away from this (this will be the focus of #356).It also implements
Deref
andDerefMut
, which should make the type more transparent – and all of the common impls are in macros.I've added
bytes
support toBase64UrlSafeData
, so it can read whatHumanBinaryData
produces. Unfortunately this makes migration a two-step process.While we're here, this makes
serde_json
a dev-dependency ofbase64urlsafedata
, because it's only used in tests; and this also adds a bunch more tests for expected input formats.