Personal book of passwords

security.go 255B

123456789101112
  1. package main
  2. // Encrypt the password book
  3. func encrypt(clearText, profile, passphrase string) ([]byte, error) {
  4. return nil, nil
  5. }
  6. // Decrypt the password book
  7. func decrypt(encryptedText, profile, passphrase string) ([]byte, error) {
  8. return nil, nil
  9. }