| 1 | export type EncryptionMethod = "pgp" | "xchacha"; |
| 2 | |
| 3 | export interface PGPKeyMetadata { |
| 4 | keyFingerprint: string; |
| 5 | createdAt: string; |
| 6 | algorithm: string; |
| 7 | } |
| 8 | |
| 9 | export interface EncryptionSettings { |
| 10 | method: EncryptionMethod; |
nothing calls this directly
no outgoing calls
no test coverage detected