[BACK]Return to bcrypt.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libcrypt

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libcrypt/bcrypt.c between version 1.18 and 1.19

version 1.18, 2013/06/24 04:21:20 version 1.19, 2013/08/28 17:47:07
Line 314  __bcrypt(const char *key, const char *sa
Line 314  __bcrypt(const char *key, const char *sa
         encode_base64((u_int8_t *) encrypted + i + 3, csalt, BCRYPT_MAXSALT);          encode_base64((u_int8_t *) encrypted + i + 3, csalt, BCRYPT_MAXSALT);
         encode_base64((u_int8_t *) encrypted + strlen(encrypted), ciphertext,          encode_base64((u_int8_t *) encrypted + strlen(encrypted), ciphertext,
             4 * BCRYPT_BLOCKS - 1);              4 * BCRYPT_BLOCKS - 1);
         __explicit_memset(&state, 0, sizeof(state));          explicit_memset(&state, 0, sizeof(state));
         return encrypted;          return encrypted;
 }  }
   

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

CVSweb <webmaster@jp.NetBSD.org>