package crypto // Crypto provides encryption/decryption for plugins. type Crypto interface { EncryptSecret(plaintext string) (string, error) DecryptSecret(ciphertext string) (string, error) }