func (useCase encrypt) Execute(dataYaml string) (string, error) {
    document := make(yaml.MapSlice, 0)
    err := yaml.Unmarshal([]byte(dataYaml), &document)
    if err != nil {
        return "", err