mirror of
https://github.com/number571/go-peer.git
synced 2026-09-14 11:05:42 +05:00
15 lines
258 B
Go
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
|