Personal book of passwords
package main// Encrypt the password bookfunc encrypt(clearText, profile, passphrase string) ([]byte, error) { return nil, nil}// Decrypt the password bookfunc decrypt(encryptedText, profile, passphrase string) ([]byte, error) { return nil, nil}