Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1641,11 +1641,11 @@ name | description
`nameFR` | french female or male names
`nameFRF` | french female names
`nameFRM` | french male names
`nameGE` | german female or male names
`nameGEF` | german female names
`nameGEM` | german male names
`nameDE` | german female or male names
`nameDEF` | german female names
`nameDEM` | german male names
`surnameFR`| french surnames
`surnameGE`| german surnames
`surnameDE`| german surnames
`surnameES`| spanish surnames
`townFR` | french towns names

Expand Down
4 changes: 4 additions & 0 deletions pkg/maskingdata/maskingdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ var MapData = map[string][]string{
"nameESF": NameESF,
"surnameES": SurnameES,
"townFR": TownFR,
"nameDE": append(NameDEM, NameDEF...),
"nameDEM": NameDEM,
"nameDEF": NameDEF,
"surnameDE": SurnameDE,
}
121 changes: 121 additions & 0 deletions pkg/maskingdata/nameDEF.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
// Copyright (C) 2021 CGI France
//
// This file is part of PIMO.
//
// PIMO is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PIMO is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with PIMO. If not, see <http://www.gnu.org/licenses/>.

package maskingdata

var NameDEF = []string{
"Ursula",
"Maria",
"Monika",
"Petra",
"Renate",
"Helga",
"Angelika",
"Doris",
"Irmgard",
"Hannelore",
"Gertrud",
"Ulrike",
"Kerstin",
"Jutta",
"Ruth",
"Anja",
"Gerda",
"Sandra",
"Christel",
"Elfriede",
"Rita",
"Anneliese",
"Waltraud",
"Ilse",
"Nicole",
"Beate",
"Regina",
"Ingeborg",
"Rosemarie",
"Gabriele",
"Manuela",
"Silke",
"Sonja",
"Katharina",
"Gudrun",
"Anita",
"Tanja",
"Christiame",
"Sigrid",
"Silvia",
"Bärbel",
"Bettina",
"Daniela",
"Irene",
"Simone",
"Cornelia",
"Stefanie",
"Annette",
"Anke",
"Heidi",
"Angela",
"Michaela",
"Dagmar",
"Johanna",
"Melanie",
"Katrin",
"Roswitha",
"Annemarie",
"Sylvia",
"Erna",
"Margot",
"Iris",
"Alexandra",
"Katja",
"Margarete",
"Astrid",
"Anne",
"Margit",
"Helene",
"Julia",
"Carmen",
"Ilona",
"Hedwig",
"Emily",
"Sofia",
"Marie",
"Mia",
"Emma",
"Hanna",
"Ella",
"Lina",
"Lea",
"Mila",
"Lara",
"Emilia",
"Anna",
"Sophia",
"Zoe",
"Hannah",
"Charlotte",
"Sophie",
"Leah",
"Elisa",
"Nora",
"Ava",
"Lia",
"Eva",
"Clara",
"Lily",
"Luisa",
}
121 changes: 121 additions & 0 deletions pkg/maskingdata/nameDEM.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
// Copyright (C) 2021 CGI France
//
// This file is part of PIMO.
//
// PIMO is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PIMO is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with PIMO. If not, see <http://www.gnu.org/licenses/>.

package maskingdata

var NameDEM = []string{
"Peter",
"Michael",
"Wolfgang",
"Thomas",
"Klaus",
"Werner",
"Manfred",
"Hans",
"Heinz",
"Andreas",
"Jürgen",
"Helmut",
"Gerhard",
"Günter",
"Hermann",
"Karl",
"Rainer",
"Fritz",
"Walter",
"Rolf",
"Kurt",
"Siegfried",
"Joachim",
"Johann",
"Ralf",
"Norbert",
"Wilhelm",
"Bernhard",
"Markus",
"Jörg",
"Alfred",
"Matthias",
"Alexander",
"Ulrich",
"Willi",
"Erich",
"Harald",
"Roland",
"Reinhard",
"Paul",
"Günther",
"Gerd",
"Lothar",
"Ernst",
"Robert",
"Dirk",
"Friedrich",
"Erwin",
"Johannes",
"Otto",
"Jens",
"Volker",
"Wilfried",
"Holger",
"Hans-Jürgen",
"Richard",
"Hubert",
"Anton",
"Udo",
"Dietmar",
"Hartmut",
"Christoph",
"Oliver",
"Stephan",
"Hans-Joachim",
"Albert",
"Daniel",
"Ludwig",
"Reinhold",
"Detlef",
"Adolf",
"Sven",
"Reiner",
"Steffen",
"Eberhard",
"Torsten",
"Heiko",
"Sebastian",
"Kai",
"Jan",
"Mario",
"Lukas",
"Jonas",
"Jakob",
"Emil",
"Lucas",
"Noah",
"Liam",
"Ben",
"Finn",
"Elias",
"David",
"Moritz",
"Felix",
"Luke",
"Stefan",
"Tobias",
"Florian",
"Leon",
"Lars",
}
121 changes: 121 additions & 0 deletions pkg/maskingdata/surnameDE.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
// Copyright (C) 2021 CGI France
//
// This file is part of PIMO.
//
// PIMO is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PIMO is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with PIMO. If not, see <http://www.gnu.org/licenses/>.

package maskingdata

var SurnameDE = []string{
"Müller",
"Schmidt",
"Schneider",
"Fischer",
"Weber",
"Meyer",
"Wagner",
"Becker",
"Schulz",
"Hoffmann",
"Koch",
"Richter",
"Bauer",
"Schäfer",
"Klein",
"Wolf",
"Schröder",
"Neumann",
"Schwarz",
"Braun",
"Zimmermann",
"Hofmann",
"Lange",
"Hartmann",
"Krüger",
"Krause",
"Lehmann",
"Schmitz",
"Meier",
"Schmitt",
"Werner",
"Schmid",
"Schulze",
"Maier",
"Herrmann",
"Mayer",
"Köhler",
"Walter",
"König",
"Huber",
"Kaiser",
"Peters",
"Fuchs",
"Möller",
"Lang",
"Scholz",
"Jung",
"Weiß",
"Hahn",
"Keller",
"Berger",
"Vogel",
"Schubert",
"Friedrich",
"Frank",
"Roth",
"Winkler",
"Beck",
"Günther",
"Lorenz",
"Baumann",
"Franke",
"Albrecht",
"Ludwig",
"Winter",
"Simon",
"Schuster",
"Schumacher",
"Kraus",
"Böhm",
"Vogt",
"Martin",
"Stein",
"Jäger",
"Sommer",
"Krämer",
"Brandt",
"Otto",
"Heinrich",
"Schulte",
"Graf",
"Haas",
"Seidel",
"Schreiber",
"Groß",
"Dietrich",
"Engel",
"Ziegler",
"Horn",
"Bergmann",
"Pohl",
"Kuhn",
"Jansen",
"Voigt",
"Kühn",
"Beyer",
"Busch",
"Thomas",
"Hansen",
"Lindner",
}
Loading
Loading