PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
crypt-gensalt.c File Reference
#include "postgres.h"
#include "px-crypt.h"
Include dependency graph for crypt-gensalt.c:

Go to the source code of this file.

Typedefs

typedef unsigned int BF_word
 

Functions

char * _crypt_gensalt_traditional_rn (unsigned long count, const char *input, int size, char *output, int output_size)
 
char * _crypt_gensalt_extended_rn (unsigned long count, const char *input, int size, char *output, int output_size)
 
char * _crypt_gensalt_md5_rn (unsigned long count, const char *input, int size, char *output, int output_size)
 
static void BF_encode (char *dst, const BF_word *src, int size)
 
char * _crypt_gensalt_blowfish_rn (unsigned long count, const char *input, int size, char *output, int output_size)
 

Variables

static unsigned char _crypt_itoa64 [64+1]
 
static unsigned char BF_itoa64 [64+1]
 

Typedef Documentation

◆ BF_word

typedef unsigned int BF_word

Definition at line 19 of file crypt-gensalt.c.

Function Documentation

◆ _crypt_gensalt_blowfish_rn()

char * _crypt_gensalt_blowfish_rn ( unsigned long  count,
const char *  input,
int  size,
char *  output,
int  output_size 
)

Definition at line 161 of file crypt-gensalt.c.

163{
164 if (size < 16 || output_size < 7 + 22 + 1 ||
165 (count && (count < 4 || count > 31)))
166 {
167 if (output_size > 0)
168 output[0] = '\0';
169 return NULL;
170 }
171
172 if (!count)
173 count = 5;
174
175 output[0] = '$';
176 output[1] = '2';
177 output[2] = 'a';
178 output[3] = '$';
179 output[4] = '0' + count / 10;
180 output[5] = '0' + count % 10;
181 output[6] = '$';
182
183 BF_encode(&output[7], (const BF_word *) input, 16);
184 output[7 + 22] = '\0';
185
186 return output;
187}
unsigned int BF_word
static void BF_encode(char *dst, const BF_word *src, int size)
FILE * input
FILE * output

References BF_encode(), input, and output.

◆ _crypt_gensalt_extended_rn()

char * _crypt_gensalt_extended_rn ( unsigned long  count,
const char *  input,
int  size,
char *  output,
int  output_size 
)

Definition at line 43 of file crypt-gensalt.c.

45{
46 unsigned long value;
47
48/* Even iteration counts make it easier to detect weak DES keys from a look
49 * at the hash, so they should be avoided */
50 if (size < 3 || output_size < 1 + 4 + 4 + 1 ||
51 (count && (count > 0xffffff || !(count & 1))))
52 {
53 if (output_size > 0)
54 output[0] = '\0';
55 return NULL;
56 }
57
58 if (!count)
59 count = 725;
60
61 output[0] = '_';
62 output[1] = _crypt_itoa64[count & 0x3f];
63 output[2] = _crypt_itoa64[(count >> 6) & 0x3f];
64 output[3] = _crypt_itoa64[(count >> 12) & 0x3f];
65 output[4] = _crypt_itoa64[(count >> 18) & 0x3f];
66 value = (unsigned long) (unsigned char) input[0] |
67 ((unsigned long) (unsigned char) input[1] << 8) |
68 ((unsigned long) (unsigned char) input[2] << 16);
69 output[5] = _crypt_itoa64[value & 0x3f];
70 output[6] = _crypt_itoa64[(value >> 6) & 0x3f];
71 output[7] = _crypt_itoa64[(value >> 12) & 0x3f];
72 output[8] = _crypt_itoa64[(value >> 18) & 0x3f];
73 output[9] = '\0';
74
75 return output;
76}
static unsigned char _crypt_itoa64[64+1]
Definition: crypt-gensalt.c:21
static struct @162 value

References _crypt_itoa64, input, output, and value.

◆ _crypt_gensalt_md5_rn()

char * _crypt_gensalt_md5_rn ( unsigned long  count,
const char *  input,
int  size,
char *  output,
int  output_size 
)

Definition at line 79 of file crypt-gensalt.c.

81{
82 unsigned long value;
83
84 if (size < 3 || output_size < 3 + 4 + 1 || (count && count != 1000))
85 {
86 if (output_size > 0)
87 output[0] = '\0';
88 return NULL;
89 }
90
91 output[0] = '$';
92 output[1] = '1';
93 output[2] = '$';
94 value = (unsigned long) (unsigned char) input[0] |
95 ((unsigned long) (unsigned char) input[1] << 8) |
96 ((unsigned long) (unsigned char) input[2] << 16);
97 output[3] = _crypt_itoa64[value & 0x3f];
98 output[4] = _crypt_itoa64[(value >> 6) & 0x3f];
99 output[5] = _crypt_itoa64[(value >> 12) & 0x3f];
100 output[6] = _crypt_itoa64[(value >> 18) & 0x3f];
101 output[7] = '\0';
102
103 if (size >= 6 && output_size >= 3 + 4 + 4 + 1)
104 {
105 value = (unsigned long) (unsigned char) input[3] |
106 ((unsigned long) (unsigned char) input[4] << 8) |
107 ((unsigned long) (unsigned char) input[5] << 16);
108 output[7] = _crypt_itoa64[value & 0x3f];
109 output[8] = _crypt_itoa64[(value >> 6) & 0x3f];
110 output[9] = _crypt_itoa64[(value >> 12) & 0x3f];
111 output[10] = _crypt_itoa64[(value >> 18) & 0x3f];
112 output[11] = '\0';
113 }
114
115 return output;
116}

References _crypt_itoa64, input, output, and value.

◆ _crypt_gensalt_traditional_rn()

char * _crypt_gensalt_traditional_rn ( unsigned long  count,
const char *  input,
int  size,
char *  output,
int  output_size 
)

Definition at line 25 of file crypt-gensalt.c.

27{
28 if (size < 2 || output_size < 2 + 1 || (count && count != 25))
29 {
30 if (output_size > 0)
31 output[0] = '\0';
32 return NULL;
33 }
34
35 output[0] = _crypt_itoa64[(unsigned int) input[0] & 0x3f];
36 output[1] = _crypt_itoa64[(unsigned int) input[1] & 0x3f];
37 output[2] = '\0';
38
39 return output;
40}

References _crypt_itoa64, input, and output.

◆ BF_encode()

static void BF_encode ( char *  dst,
const BF_word src,
int  size 
)
static

Definition at line 124 of file crypt-gensalt.c.

125{
126 const unsigned char *sptr = (const unsigned char *) src;
127 const unsigned char *end = sptr + size;
128 unsigned char *dptr = (unsigned char *) dst;
129 unsigned int c1,
130 c2;
131
132 do
133 {
134 c1 = *sptr++;
135 *dptr++ = BF_itoa64[c1 >> 2];
136 c1 = (c1 & 0x03) << 4;
137 if (sptr >= end)
138 {
139 *dptr++ = BF_itoa64[c1];
140 break;
141 }
142
143 c2 = *sptr++;
144 c1 |= c2 >> 4;
145 *dptr++ = BF_itoa64[c1];
146 c1 = (c2 & 0x0f) << 2;
147 if (sptr >= end)
148 {
149 *dptr++ = BF_itoa64[c1];
150 break;
151 }
152
153 c2 = *sptr++;
154 c1 |= c2 >> 6;
155 *dptr++ = BF_itoa64[c1];
156 *dptr++ = BF_itoa64[c2 & 0x3f];
157 } while (sptr < end);
158}
static unsigned char BF_itoa64[64+1]

References BF_itoa64.

Referenced by _crypt_gensalt_blowfish_rn().

Variable Documentation

◆ _crypt_itoa64

unsigned char _crypt_itoa64[64+1]
static
Initial value:
=
"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"

Definition at line 21 of file crypt-gensalt.c.

Referenced by _crypt_gensalt_extended_rn(), _crypt_gensalt_md5_rn(), and _crypt_gensalt_traditional_rn().

◆ BF_itoa64

unsigned char BF_itoa64[64+1]
static
Initial value:
=
"./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"

Definition at line 120 of file crypt-gensalt.c.

Referenced by BF_encode().