vspd icon indicating copy to clipboard operation
vspd copied to clipboard

A Voting Service Provider (VSP) for the Decred network.

Results 13 vspd issues
Sort by recently updated
recently updated
newest added

What would the desirable flow be if a VSP operator , for one reason or another, needed to retire or simply lost control of or access to a wallet that...

From #377 https://github.com/decred/vspd/blob/master/docs/two-way-accountability.md

The original concept for vspd included clients (dcrwallet) storing the requests/responses/signatures in order to provide [two way accountability](https://github.com/jholdstock/vspd/blob/master/docs/two-way-accountability.md). This isn't currently done in dcrwallet, but the data should be exposed...

Per [SEI CERT C Coding Standard](https://wiki.sei.cmu.edu/confluence/display/c/MSC18-C.+Be+careful+while+handling+sensitive+data,+such+as+passwords,+in+program+code), it is best practice not to store plain text passwords in memory or on disk. This was achieved by storing the bcrypt hash of...

Policy choice for tspends can be set on dcrwallet for both a specific pi key (that is, approving or disapproving all tspends signed by some given key) or by individual...

This commit adds manual ticket search feature to the vspd frontend. Tickets owners can search tickets with a base64 encoded string containing the ticket hash and signature. if ownership validation...

Offer a UI element that would allow users to check whether a given ticket is registered with the VSP. The goal is to allow users to verify on their own...

https://github.com/decred/vspd/blob/e42b1cad330596c243baf4c391dc40c981f4de90/config.go#L66 Per [SEI CERT C Coding Standard](https://wiki.sei.cmu.edu/confluence/display/c/MSC18-C.+Be+careful+while+handling+sensitive+data,+such+as+passwords,+in+program+code) it is best practice not to store plain text passwords in memory or on disk. This could be removed from memory, mostly, by...