Browse Source

remove very common words and nsfw words

283
ThomasV 13 years ago
parent
commit
d03dd0be8e
  1. 38
      client/mnemonic.py

38
client/mnemonic.py

@ -22,12 +22,10 @@
words = [ words = [
"like", "like",
"have",
"just", "just",
"love", "love",
"one", "one",
"know", "know",
"from",
"never", "never",
"want", "want",
"see", "see",
@ -38,20 +36,12 @@ words = [
"there", "there",
"life", "life",
"make", "make",
"how",
"would",
"look", "look",
"eye", "eye",
"because",
"say", "say",
"day", "day",
"who",
"get",
"had",
"were",
"down", "down",
"only", "only",
"our",
"think", "think",
"heart", "heart",
"back", "back",
@ -59,20 +49,16 @@ words = [
"into", "into",
"come", "come",
"about", "about",
"him",
"more", "more",
"away", "away",
"still", "still",
"their",
"way", "way",
"them", "them",
"why",
"take", "take",
"thing", "thing",
"even", "even",
"through", "through",
"long", "long",
"let",
"always", "always",
"world", "world",
"too", "too",
@ -80,16 +66,13 @@ words = [
"tell", "tell",
"try", "try",
"hand", "hand",
"has",
"face", "face",
"did",
"thought", "thought",
"over", "over",
"here", "here",
"word", "word",
"other", "other",
"where", "where",
"every",
"need", "need",
"smile", "smile",
"again", "again",
@ -97,7 +80,6 @@ words = [
"cry", "cry",
"been", "been",
"night", "night",
"its",
"ever", "ever",
"little", "little",
"said", "said",
@ -168,7 +150,6 @@ words = [
"body", "body",
"hate", "hate",
"after", "after",
"until",
"close", "close",
"talk", "talk",
"hard", "hard",
@ -186,7 +167,6 @@ words = [
"new", "new",
"many", "many",
"two", "two",
"told",
"inside", "inside",
"should", "should",
"true", "true",
@ -262,7 +242,6 @@ words = [
"sound", "sound",
"red", "red",
"everyone", "everyone",
"fuck",
"hide", "hide",
"kiss", "kiss",
"truth", "truth",
@ -365,7 +344,6 @@ words = [
"learn", "learn",
"three", "three",
"gave", "gave",
"set",
"floor", "floor",
"promise", "promise",
"breathe", "breathe",
@ -532,7 +510,6 @@ words = [
"four", "four",
"leg", "leg",
"ring", "ring",
"ago",
"course", "course",
"goodbye", "goodbye",
"lead", "lead",
@ -541,7 +518,6 @@ words = [
"corner", "corner",
"desire", "desire",
"fine", "fine",
"gonna",
"known", "known",
"problem", "problem",
"ran", "ran",
@ -591,14 +567,12 @@ words = [
"also", "also",
"create", "create",
"lonely", "lonely",
"onto",
"safe", "safe",
"cross", "cross",
"dress", "dress",
"evil", "evil",
"silent", "silent",
"bone", "bone",
"brought",
"fate", "fate",
"perhaps", "perhaps",
"anger", "anger",
@ -682,7 +656,6 @@ words = [
"echo", "echo",
"figure", "figure",
"gold", "gold",
"golden",
"grew", "grew",
"herself", "herself",
"laughter", "laughter",
@ -785,11 +758,9 @@ words = [
"imagine", "imagine",
"important", "important",
"nobody", "nobody",
"none",
"shatter", "shatter",
"warmth", "warmth",
"became", "became",
"below",
"bore", "bore",
"fat", "fat",
"feed", "feed",
@ -871,7 +842,6 @@ words = [
"suck", "suck",
"sweat", "sweat",
"tale", "tale",
"bitch",
"box", "box",
"chill", "chill",
"clothes", "clothes",
@ -1162,7 +1132,6 @@ words = [
"exactly", "exactly",
"explode", "explode",
"familiar", "familiar",
"flew",
"fold", "fold",
"further", "further",
"lit", "lit",
@ -1171,7 +1140,6 @@ words = [
"scent", "scent",
"selfish", "selfish",
"sell", "sell",
"sex",
"sharp", "sharp",
"sink", "sink",
"spring", "spring",
@ -1198,7 +1166,6 @@ words = [
"palm", "palm",
"perfectly", "perfectly",
"pillow", "pillow",
"piss",
"pity", "pity",
"poison", "poison",
"roar", "roar",
@ -1592,7 +1559,6 @@ words = [
"blossom", "blossom",
"bounce", "bounce",
"bridge", "bridge",
"bye",
"cheap", "cheap",
"crumble", "crumble",
"decision", "decision",
@ -1751,7 +1717,6 @@ words = [
"fur", "fur",
"giggle", "giggle",
"glorious", "glorious",
"hers",
"ignorance", "ignorance",
"law", "law",
"lifeless", "lifeless",
@ -1771,7 +1736,6 @@ words = [
"possibly", "possibly",
"practice", "practice",
"slice", "slice",
"slut",
"spell", "spell",
"stock", "stock",
"strife", "strife",
@ -1815,7 +1779,6 @@ words = [
"gut", "gut",
"hook", "hook",
"hurl", "hurl",
"ill",
"invite", "invite",
"juice", "juice",
"manage", "manage",
@ -1950,6 +1913,7 @@ def mn_decode( wlist ):
if __name__ == '__main__': if __name__ == '__main__':
import sys import sys
print len(words)
key = '6a8657c1f2566290be460fd51bb9f7fc' key = '6a8657c1f2566290be460fd51bb9f7fc'
ss = mn_encode(key) ss = mn_encode(key)
print key print key

Loading…
Cancel
Save