type Decryptor interface {
// Checks if given content is encrypted by the decryptor interface IsEncrypted(data []byte) (bool, error)
// Reads the given content, based on the decrypter config attempts to decrypt Decrypt(data []byte) (content map[string]interface{}, err error)
}