mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 15:25:59 +03:00
[GH-ISSUE #836] Option to Set Password is Absent #564
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#564
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @JacobF-dev on GitHub (Jun 18, 2020).
Original GitHub issue: https://github.com/quasar/Quasar/issues/836
Describe the bug
The option to set a connection password is no longer present in version 1.4.0, although is was present in version 1.3.0.0.
To Reproduce
Steps to reproduce the behavior:
System
Is the password set somewhere else, or is it completely removed?
@MaxXor commented on GitHub (Jun 18, 2020):
Hey, it is no longer necessary due to the new way the client and server authenticate each other using X.509 certificates. The only thing you need to store safely now is the server certificate, called
quasar.p12.@JacobF-dev commented on GitHub (Jun 18, 2020):
Okay, just confirming, the connection is still encrypted, but the password is stored in the quasar.p12 file. Right?
@MaxXor commented on GitHub (Jun 18, 2020):
Yes the connection is still encrypted (stronger than before btw). There is no password in the
quasar.p12file, but a server certificate including a cryptographic key pair which is more secure than a password.@JacobF-dev commented on GitHub (Jun 18, 2020):
OK! Thank you for your help and commitment!