diff options
author | June McEnroe <june@causal.agency> | 2019-02-05 03:05:14 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-02-05 03:05:14 -0500 |
commit | a1c2d30886cb5a6f74ed241a60c84f8af932ff75 (patch) | |
tree | f76cc7d7e019c7669c480b1f46a9e4dd6fbfec60 /bin | |
parent | Add aes (diff) | |
download | src-a1c2d30886cb5a6f74ed241a60c84f8af932ff75.tar.gz src-a1c2d30886cb5a6f74ed241a60c84f8af932ff75.zip |
Fix DEL in aes
Diffstat (limited to 'bin')
-rw-r--r-- | bin/aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/aes.c b/bin/aes.c index cb765934..640e9b9b 100644 --- a/bin/aes.c +++ b/bin/aes.c @@ -31,7 +31,7 @@ static const wchar_t Table[128] = { L"@ABCDEFGHIJKLMNO" L"PQRSTUVWXYZ[\]^_" L"`abcdefghijklmno" - L"pqrstuvwxyz{|}~\xFF" + L"pqrstuvwxyz{|}~\x7F" }; static void enwiden(const char *ch) { |