Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Unified Diff: fusl/src/crypt/crypt_blowfish.c

Issue 1706293003: [fusl] Remove some more tabs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/src/crypt/crypt_blowfish.c
diff --git a/fusl/src/crypt/crypt_blowfish.c b/fusl/src/crypt/crypt_blowfish.c
index c9886c8365c41c15c59a3a3ee602b930c0bb6487..60584dedb9b5d3973f04595a3ffcbc2cf3fb4ec2 100644
--- a/fusl/src/crypt/crypt_blowfish.c
+++ b/fusl/src/crypt/crypt_blowfish.c
@@ -371,22 +371,22 @@ static BF_word BF_encrypt(BF_ctx* ctx,
do {
L ^= ctx->s.P[0];
#if 0
- BF_ROUND(L, R, 0);
- BF_ROUND(R, L, 1);
- BF_ROUND(L, R, 2);
- BF_ROUND(R, L, 3);
- BF_ROUND(L, R, 4);
- BF_ROUND(R, L, 5);
- BF_ROUND(L, R, 6);
- BF_ROUND(R, L, 7);
- BF_ROUND(L, R, 8);
- BF_ROUND(R, L, 9);
- BF_ROUND(L, R, 10);
- BF_ROUND(R, L, 11);
- BF_ROUND(L, R, 12);
- BF_ROUND(R, L, 13);
- BF_ROUND(L, R, 14);
- BF_ROUND(R, L, 15);
+ BF_ROUND(L, R, 0);
+ BF_ROUND(R, L, 1);
+ BF_ROUND(L, R, 2);
+ BF_ROUND(R, L, 3);
+ BF_ROUND(L, R, 4);
+ BF_ROUND(R, L, 5);
+ BF_ROUND(L, R, 6);
+ BF_ROUND(R, L, 7);
+ BF_ROUND(L, R, 8);
+ BF_ROUND(R, L, 9);
+ BF_ROUND(L, R, 10);
+ BF_ROUND(R, L, 11);
+ BF_ROUND(L, R, 12);
+ BF_ROUND(R, L, 13);
+ BF_ROUND(L, R, 14);
+ BF_ROUND(R, L, 15);
#else
for (int i = 0; i < 16; i += 2) {
BF_ROUND(L, R, i);
« no previous file with comments | « fusl/arch/mips/atomic_arch.h ('k') | fusl/src/malloc/malloc.c » ('j') | fusl/src/regex/regcomp.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698