-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
storage: Reword Tang fingerprint verification dialog #18908
storage: Reword Tang fingerprint verification dialog #18908
Conversation
a643e17
to
d5bed79
Compare
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 assume we drop SHA1 is some mark it as insecure. Seems the tests still need to be adjusted to match the reworded test.
The thinking was that everybody can produce SHA256 fingerprints on the Tang server, and showing the SHA1 fingerprint doesn't have any value anymore, and just complicates the dialog. |
d5bed79
to
0703d7d
Compare
Yeah, except debian-stable, rhel-8, and centos-8, hmm... |
0703d7d
to
5914abe
Compare
5914abe
to
d760b61
Compare
I have left SHA-1 in the dialog. We can't say which algorithm will be used by |
I would change the wording a bit:
|
@garrett, what do you think? To me, it's all the same. :-) |
d760b61
to
c543772
Compare
<TextContent> | ||
<Text component={TextVariants.p}>{_("Check the key hash with the Tang server.")}</Text> |
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.
These 2 added lines are not executed by any test. Details
<Text component={TextVariants.h3}>{_("How to check")}</Text> | ||
<Text component={TextVariants.p}> | ||
{_("In a terminal, run: ")} |
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.
These 3 added lines are not executed by any test. Details
</Text> | ||
<Text component={TextVariants.p}> | ||
{_("Check that the SHA-256 or SHA-1 hash from the command matches this dialog.")} | ||
</Text> |
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.
These 4 added lines are not executed by any test. Details
<Text component={TextVariants.h3}>{_("SHA-256")}</Text> | ||
{ sigkey_thps.map(s => <Text key={s.sha256} component={TextVariants.pre}>{s.sha256}</Text>) } |
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.
These 2 added lines are not executed by any test. Details
<Text component={TextVariants.h3}>{_("SHA-1")}</Text> | ||
{ sigkey_thps.map(s => <Text key={s.sha1} component={TextVariants.pre}>{s.sha1}</Text>) } | ||
</TextContent> |
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.
These 3 added lines are not executed by any test. Details
No description provided.