Project

General

Profile

Submit #2295 ยป bcrypt2.diff

logan1, 01/30/2012 11:19 AM

View differences:

secure/lib/libcrypt/crypt-blowfish.c
static char encrypted[_PASSWORD_LEN];
static char gsalt[BCRYPT_MAXSALT * 4 / 3 + 1];
static char error[] = ":";
static const u_int8_t Base64Code[] =
"./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
......
salt++;
if (*salt > BCRYPT_VERSION) {
/* How do I handle errors ? Return ':' */
return error;
/* How do I handle errors ? Return NULL according to
crypt(3) */
return NULL;
}
/* Check for minor versions */
......
salt++;
break;
default:
return error;
return NULL;
}
} else
minor = 0;
......
if (salt[2] != '$')
/* Out of sync with passwd entry */
return error;
return NULL;
/* Computer power doesnt increase linear, 2^x should be fine */
if ((rounds = (u_int32_t) 1 << (logr = atoi(salt))) < BCRYPT_MINROUNDS)
return error;
return NULL;
/* Discard num rounds + "$" identifier */
salt += 3;
    (1-1/1)