xyz.2877686.obsidian-pds-sync.note

2877686.xyz

Documentation

An end-to-end encrypted note. The ciphertext body is readable only with the user's passphrase-derived key.

main record

An end-to-end encrypted note. The ciphertext body is readable only with the user's passphrase-derived key.

Record Key tid Timestamp-based ID

Properties

data bytes Required

Ciphertext: a 12-byte IV followed by the AES-256-GCM output.

enc string Required

Symmetric cipher used for `data`.

Known values: AES-256-GCM
kdf string Required

Key-derivation function for the encryption key.

Known values: Argon2id
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "enc",
      "kdf",
      "data"
    ],
    "properties": {
      "enc": {
        "type": "string",
        "description": "Symmetric cipher used for `data`.",
        "knownValues": [
          "AES-256-GCM"
        ]
      },
      "kdf": {
        "type": "string",
        "description": "Key-derivation function for the encryption key.",
        "knownValues": [
          "Argon2id"
        ]
      },
      "data": {
        "type": "bytes",
        "description": "Ciphertext: a 12-byte IV followed by the AES-256-GCM output."
      }
    }
  },
  "description": "An end-to-end encrypted note. The ciphertext body is readable only with the user's passphrase-derived key."
}

Lexicon Garden

@