util  db.md at [a3ccd193d5]

File kpw.d/db.md artifact f52a921e08 part of check-in a3ccd193d5


kpw db format

kpw uses a simple binary database format. it consists of a number of values of constant size, followed by a series of encrypted records.

  1. public key
  2. password salt
  3. encrypt(password, private key)
  4. encrypt(private key, password salt) [for pw verification]
  5. record *

each record takes the form of

  1. account name length (1 byte)
  2. account name
  3. password length (4 bytes)
  4. password

records are added simply by encrypting them with the public key and appending them to the end of the file. thus, adding a new password does not require the decryption password.