~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/drizzle_com.h

  • Committer: Brian Aker
  • Date: 2008-07-15 09:43:34 UTC
  • mfrom: (154.1.3 mysqladmin_diet)
  • Revision ID: brian@tangent.org-20080715094334-ctc02tojgpyy6u75
mysqladmin patch (plus removal of password auth bits)

Show diffs side-by-side

added added

removed removed

Lines of Context:
450
450
void create_random_string(char *to, unsigned int length, struct rand_struct *rand_st);
451
451
 
452
452
void hash_password(uint32_t *to, const char *password, uint32_t password_len);
453
 
void make_scrambled_password_323(char *to, const char *password);
454
 
void scramble_323(char *to, const char *message, const char *password);
455
 
my_bool check_scramble_323(const char *, const char *message, uint32_t *salt);
456
 
void get_salt_from_password_323(uint32_t *res, const char *password);
457
 
void make_password_from_salt_323(char *to, const uint32_t *salt);
458
453
 
459
454
void make_scrambled_password(char *to, const char *password);
460
455
void scramble(char *to, const char *message, const char *password);