Personal book of passwords

security.go 255B

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