aboutsummaryrefslogtreecommitdiff
path: root/src/secret.h
blob: d6ee2eaa409b9d542ecadc80c611524831e15c25 (plain)
1
2
3
4
5
6
7
#define A(c)            (c)-0x19
#define UNHIDE_STR(str) do { char *p = str;  while (*p) *p++ += 0x19; } while (0)
#define HIDE_STR(str)   do { char *p = str;  while (*p) *p++ -= 0x19; } while (0)

char pass[] = {
    A('c'), A('a'), A('t'), A('z'), A('r'), A('u'), A('l'), 0
};