()
| 93 | } |
| 94 | |
| 95 | func (li *lazyIdentity) Keys() ([]*identity.Key, error) { |
| 96 | id, err := li.load() |
| 97 | if err != nil { |
| 98 | return nil, err |
| 99 | } |
| 100 | return id.Keys(), nil |
| 101 | } |
| 102 | |
| 103 | func (li *lazyIdentity) IsProtected() (bool, error) { |
| 104 | id, err := li.load() |