lockbox

password manager
Log | Files | Refs | README | LICENSE

commit fd5ec7e36b44a5ddb402091e562a0a1184cca874
parent fcdac88f4c781d6a758ad571fcf8407b8692b697
Author: Sean Enck <sean@ttypty.com>
Date:   Mon, 18 Jul 2022 18:59:25 -0400

include a pad byte for later

Diffstat:
Minternal/encrypt/core.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/internal/encrypt/core.go b/internal/encrypt/core.go @@ -29,7 +29,7 @@ const ( ) var ( - cryptoVers = []byte{1} + cryptoVers = []byte{0, 1} cryptoVersLength = len(cryptoVers) )