go-peer/pkg/database/doc.go
2024-03-16 23:50:45 +07:00

15 lines
258 B
Go

// Package database is a key-value database with integrated password encryption functions.
//
/*
DATABASE ENCRYPTION FORMAT
H(EM) || EM
where
EM = E(M)
where
E - encrypt (cipher-key)
H - hmac (auth-key)
M - message bytes
*/
package database