-
Notifications
You must be signed in to change notification settings - Fork 9
Replace key bytes and char length details (CD-93) #87
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
Conversation
docs/concepts/accounts-and-keys.md
Outdated
| ``` | ||
|
|
||
| The public-key-hex for `Secp256k1` keys starts with 02 and is 68 bytes long: | ||
| The public-key-hex for `Secp256k1` keys starts with 02 and is 68 characters / 33 bytes long: |
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.
@devendran-m I believe 68 means 34 bytes, simply divided by two
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.
Thanks, @gRoussac , and sorry for the oversight. I've addressed it now.
| 3. `secret_key.pem` is the *PEM*-encoded secret key | ||
|
|
||
| The public-key-hex for `Ed25519` keys starts with 01 and is 66 bytes long: | ||
| The public-key-hex for `Ed25519` keys starts with 01 and is 66 characters / 32 bytes long: |
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.
33 bytes if 66 chars
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.
Thanks, @gRoussac , and sorry for the oversight. I've addressed it now.
| ``` | ||
|
|
||
| The public-key-hex for `Secp256k1` keys starts with 02 and is 68 bytes long: | ||
| The public-key-hex for `Secp256k1` keys starts with 02 and is 68 characters / 33 bytes long: |
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.
34
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.
Thanks, @gRoussac , and sorry for the oversight. I've addressed it now.
mrkara
left a comment
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.
LGTM. Thank you!
Resolves JIRA CD-93 - Replace occurrences of
bytesbycharsin Accounts and Keys sectionDESCRIPTION:
This PR replaces occurrences of "bytes" with "chars" in the Accounts and Keys section of the documentation.
Changes include;
CHANGELOG: