Task #1877
if we have the private key, mark it as verified fingerprint
| Status: | New | Start date: | 09/12/2013 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% | |
| Category: | - | |||
| Target version: | 0.3 | |||
| Component: |
Description
If KeySync has the private key, then it can mark it as verified to spread a little bit more trust around :)
def mark_private_keys_as_verified(keydict):
'''go thru the given keydict and mark all private keys as verified'''
for name, key in kd2.iteritems():
if 'x' in key:
key['verification'] = 'verified'
History
#1 Updated by hans over 4 years ago
- Target version set to 0.2
#2 Updated by hans over 4 years ago
- Target version changed from 0.2 to 0.3
maybe this doesn't really make sense. If keysync starts standardizing on a single secret key for all accounts it outputs to, then this would be moot, since every client would be using the same private key.