~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/password.c

Merged from moriyoshi.

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
 
181
181
char *octet2hex(char *to, const char *str, uint32_t len)
182
182
{
 
183
  static const char _dig_vec_upper[]= "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
 
184
 
183
185
  const char *str_end= str + len; 
184
186
  for (; str != str_end; ++str)
185
187
  {