PostgreSQL Source Code  git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
pgcrypto.c File Reference
#include "postgres.h"
#include <ctype.h>
#include "parser/scansup.h"
#include "pgcrypto.h"
#include "px-crypt.h"
#include "px.h"
#include "utils/builtins.h"
#include "varatt.h"
Include dependency graph for pgcrypto.c:

Go to the source code of this file.

Typedefs

typedef int(* PFN) (const char *name, void **res)
 

Functions

static void * find_provider (text *name, PFN provider_lookup, const char *desc, int silent)
 
 PG_FUNCTION_INFO_V1 (pg_digest)
 
Datum pg_digest (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_hmac)
 
Datum pg_hmac (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_gen_salt)
 
Datum pg_gen_salt (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_gen_salt_rounds)
 
Datum pg_gen_salt_rounds (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_crypt)
 
Datum pg_crypt (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_encrypt)
 
Datum pg_encrypt (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_decrypt)
 
Datum pg_decrypt (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_encrypt_iv)
 
Datum pg_encrypt_iv (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_decrypt_iv)
 
Datum pg_decrypt_iv (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_random_bytes)
 
Datum pg_random_bytes (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (pg_random_uuid)
 
Datum pg_random_uuid (PG_FUNCTION_ARGS)
 

Variables

 PG_MODULE_MAGIC
 

Typedef Documentation

◆ PFN

typedef int(* PFN) (const char *name, void **res)

Definition at line 47 of file pgcrypto.c.

Function Documentation

◆ find_provider()

static void * find_provider ( text name,
PFN  provider_lookup,
const char *  desc,
int  silent 
)
static

Definition at line 454 of file pgcrypto.c.

457 {
458  void *res;
459  char *buf;
460  int err;
461 
464  false);
465 
466  err = provider_lookup(buf, &res);
467 
468  if (err && !silent)
469  ereport(ERROR,
470  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
471  errmsg("Cannot use \"%s\": %s", buf, px_strerror(err))));
472 
473  pfree(buf);
474 
475  return err ? NULL : res;
476 }
int errcode(int sqlerrcode)
Definition: elog.c:853
int errmsg(const char *fmt,...)
Definition: elog.c:1070
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
void err(int eval, const char *fmt,...)
Definition: err.c:43
void pfree(void *pointer)
Definition: mcxt.c:1521
static char * buf
Definition: pg_test_fsync.c:72
const char * px_strerror(int err)
Definition: px.c:111
char * downcase_truncate_identifier(const char *ident, int len, bool warn)
Definition: scansup.c:37
#define VARDATA_ANY(PTR)
Definition: varatt.h:324
#define VARSIZE_ANY_EXHDR(PTR)
Definition: varatt.h:317
const char * name

References buf, downcase_truncate_identifier(), ereport, err(), errcode(), errmsg(), ERROR, name, pfree(), px_strerror(), res, VARDATA_ANY, and VARSIZE_ANY_EXHDR.

Referenced by pg_decrypt(), pg_decrypt_iv(), pg_digest(), pg_encrypt(), pg_encrypt_iv(), and pg_hmac().

◆ pg_crypt()

Datum pg_crypt ( PG_FUNCTION_ARGS  )

Definition at line 179 of file pgcrypto.c.

180 {
181  text *arg0 = PG_GETARG_TEXT_PP(0);
182  text *arg1 = PG_GETARG_TEXT_PP(1);
183  char *buf0,
184  *buf1,
185  *cres,
186  *resbuf;
187  text *res;
188 
189  buf0 = text_to_cstring(arg0);
190  buf1 = text_to_cstring(arg1);
191 
192  resbuf = palloc0(PX_MAX_CRYPT);
193 
194  cres = px_crypt(buf0, buf1, resbuf, PX_MAX_CRYPT);
195 
196  pfree(buf0);
197  pfree(buf1);
198 
199  if (cres == NULL)
200  ereport(ERROR,
201  (errcode(ERRCODE_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION),
202  errmsg("crypt(3) returned NULL")));
203 
204  res = cstring_to_text(cres);
205 
206  pfree(resbuf);
207 
208  PG_FREE_IF_COPY(arg0, 0);
209  PG_FREE_IF_COPY(arg1, 1);
210 
212 }
#define PG_FREE_IF_COPY(ptr, n)
Definition: fmgr.h:260
#define PG_GETARG_TEXT_PP(n)
Definition: fmgr.h:309
#define PG_RETURN_TEXT_P(x)
Definition: fmgr.h:372
void * palloc0(Size size)
Definition: mcxt.c:1347
char * px_crypt(const char *psw, const char *salt, char *buf, unsigned len)
Definition: px-crypt.c:90
#define PX_MAX_CRYPT
Definition: px-crypt.h:36
Definition: c.h:692
char * text_to_cstring(const text *t)
Definition: varlena.c:217
text * cstring_to_text(const char *s)
Definition: varlena.c:184

References cstring_to_text(), ereport, errcode(), errmsg(), ERROR, palloc0(), pfree(), PG_FREE_IF_COPY, PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, px_crypt(), PX_MAX_CRYPT, res, and text_to_cstring().

◆ pg_decrypt()

Datum pg_decrypt ( PG_FUNCTION_ARGS  )

Definition at line 267 of file pgcrypto.c.

268 {
269  int err;
270  bytea *data,
271  *key,
272  *res;
273  text *type;
274  PX_Combo *c;
275  unsigned dlen,
276  klen,
277  rlen;
278 
279  type = PG_GETARG_TEXT_PP(2);
280  c = find_provider(type, (PFN) px_find_combo, "Cipher", 0);
281 
283  key = PG_GETARG_BYTEA_PP(1);
284  dlen = VARSIZE_ANY_EXHDR(data);
285  klen = VARSIZE_ANY_EXHDR(key);
286 
287  rlen = px_combo_decrypt_len(c, dlen);
288  res = palloc(VARHDRSZ + rlen);
289 
290  err = px_combo_init(c, (uint8 *) VARDATA_ANY(key), klen, NULL, 0);
291  if (!err)
292  err = px_combo_decrypt(c, (uint8 *) VARDATA_ANY(data), dlen,
293  (uint8 *) VARDATA(res), &rlen);
294 
295  px_combo_free(c);
296 
297  if (err)
298  ereport(ERROR,
299  (errcode(ERRCODE_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION),
300  errmsg("decrypt error: %s", px_strerror(err))));
301 
302  SET_VARSIZE(res, VARHDRSZ + rlen);
303 
304  PG_FREE_IF_COPY(data, 0);
305  PG_FREE_IF_COPY(key, 1);
306  PG_FREE_IF_COPY(type, 2);
307 
309 }
#define VARHDRSZ
Definition: c.h:697
unsigned char uint8
Definition: c.h:516
#define PG_GETARG_BYTEA_PP(n)
Definition: fmgr.h:308
#define PG_RETURN_BYTEA_P(x)
Definition: fmgr.h:371
void * palloc(Size size)
Definition: mcxt.c:1317
const void * data
static void * find_provider(text *name, PFN provider_lookup, const char *desc, int silent)
Definition: pgcrypto.c:454
int(* PFN)(const char *name, void **res)
Definition: pgcrypto.c:47
char * c
int px_find_combo(const char *name, PX_Combo **res)
Definition: px.c:285
#define px_combo_init(c, key, klen, iv, ivlen)
Definition: px.h:220
#define px_combo_decrypt_len(c, dlen)
Definition: px.h:219
#define px_combo_free(c)
Definition: px.h:226
#define px_combo_decrypt(c, data, dlen, res, rlen)
Definition: px.h:224
Definition: px.h:156
#define VARDATA(PTR)
Definition: varatt.h:278
#define SET_VARSIZE(PTR, len)
Definition: varatt.h:305
const char * type

References data, ereport, err(), errcode(), errmsg(), ERROR, find_provider(), sort-test::key, palloc(), PG_FREE_IF_COPY, PG_GETARG_BYTEA_PP, PG_GETARG_TEXT_PP, PG_RETURN_BYTEA_P, px_combo_decrypt, px_combo_decrypt_len, px_combo_free, px_combo_init, px_find_combo(), px_strerror(), res, SET_VARSIZE, type, VARDATA, VARDATA_ANY, VARHDRSZ, and VARSIZE_ANY_EXHDR.

◆ pg_decrypt_iv()

Datum pg_decrypt_iv ( PG_FUNCTION_ARGS  )

Definition at line 369 of file pgcrypto.c.

370 {
371  int err;
372  bytea *data,
373  *key,
374  *iv,
375  *res;
376  text *type;
377  PX_Combo *c;
378  unsigned dlen,
379  klen,
380  rlen,
381  ivlen;
382 
383  type = PG_GETARG_TEXT_PP(3);
384  c = find_provider(type, (PFN) px_find_combo, "Cipher", 0);
385 
387  key = PG_GETARG_BYTEA_PP(1);
388  iv = PG_GETARG_BYTEA_PP(2);
389  dlen = VARSIZE_ANY_EXHDR(data);
390  klen = VARSIZE_ANY_EXHDR(key);
391  ivlen = VARSIZE_ANY_EXHDR(iv);
392 
393  rlen = px_combo_decrypt_len(c, dlen);
394  res = palloc(VARHDRSZ + rlen);
395 
396  err = px_combo_init(c, (uint8 *) VARDATA_ANY(key), klen,
397  (uint8 *) VARDATA_ANY(iv), ivlen);
398  if (!err)
399  err = px_combo_decrypt(c, (uint8 *) VARDATA_ANY(data), dlen,
400  (uint8 *) VARDATA(res), &rlen);
401 
402  px_combo_free(c);
403 
404  if (err)
405  ereport(ERROR,
406  (errcode(ERRCODE_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION),
407  errmsg("decrypt_iv error: %s", px_strerror(err))));
408 
409  SET_VARSIZE(res, VARHDRSZ + rlen);
410 
411  PG_FREE_IF_COPY(data, 0);
412  PG_FREE_IF_COPY(key, 1);
413  PG_FREE_IF_COPY(iv, 2);
414  PG_FREE_IF_COPY(type, 3);
415 
417 }

References data, ereport, err(), errcode(), errmsg(), ERROR, find_provider(), sort-test::key, palloc(), PG_FREE_IF_COPY, PG_GETARG_BYTEA_PP, PG_GETARG_TEXT_PP, PG_RETURN_BYTEA_P, px_combo_decrypt, px_combo_decrypt_len, px_combo_free, px_combo_init, px_find_combo(), px_strerror(), res, SET_VARSIZE, type, VARDATA, VARDATA_ANY, VARHDRSZ, and VARSIZE_ANY_EXHDR.

◆ pg_digest()

Datum pg_digest ( PG_FUNCTION_ARGS  )

Definition at line 55 of file pgcrypto.c.

56 {
57  bytea *arg;
58  text *name;
59  unsigned len,
60  hlen;
61  PX_MD *md;
62  bytea *res;
63 
65 
66  /* will give error if fails */
67  md = find_provider(name, (PFN) px_find_digest, "Digest", 0);
68 
69  hlen = px_md_result_size(md);
70 
71  res = (text *) palloc(hlen + VARHDRSZ);
72  SET_VARSIZE(res, hlen + VARHDRSZ);
73 
76 
78  px_md_finish(md, (uint8 *) VARDATA(res));
79  px_md_free(md);
80 
81  PG_FREE_IF_COPY(arg, 0);
83 
85 }
int px_find_digest(const char *name, PX_MD **res)
Definition: openssl.c:160
void * arg
const void size_t len
#define px_md_finish(md, buf)
Definition: px.h:195
#define px_md_free(md)
Definition: px.h:196
#define px_md_update(md, data, dlen)
Definition: px.h:194
#define px_md_result_size(md)
Definition: px.h:191
Definition: px.h:100

References arg, find_provider(), len, name, palloc(), PG_FREE_IF_COPY, PG_GETARG_BYTEA_PP, PG_GETARG_TEXT_PP, PG_RETURN_BYTEA_P, px_find_digest(), px_md_finish, px_md_free, px_md_result_size, px_md_update, res, SET_VARSIZE, VARDATA, VARDATA_ANY, VARHDRSZ, and VARSIZE_ANY_EXHDR.

◆ pg_encrypt()

Datum pg_encrypt ( PG_FUNCTION_ARGS  )

Definition at line 218 of file pgcrypto.c.

219 {
220  int err;
221  bytea *data,
222  *key,
223  *res;
224  text *type;
225  PX_Combo *c;
226  unsigned dlen,
227  klen,
228  rlen;
229 
230  type = PG_GETARG_TEXT_PP(2);
231  c = find_provider(type, (PFN) px_find_combo, "Cipher", 0);
232 
234  key = PG_GETARG_BYTEA_PP(1);
235  dlen = VARSIZE_ANY_EXHDR(data);
236  klen = VARSIZE_ANY_EXHDR(key);
237 
238  rlen = px_combo_encrypt_len(c, dlen);
239  res = palloc(VARHDRSZ + rlen);
240 
241  err = px_combo_init(c, (uint8 *) VARDATA_ANY(key), klen, NULL, 0);
242  if (!err)
243  err = px_combo_encrypt(c, (uint8 *) VARDATA_ANY(data), dlen,
244  (uint8 *) VARDATA(res), &rlen);
245  px_combo_free(c);
246 
247  PG_FREE_IF_COPY(data, 0);
248  PG_FREE_IF_COPY(key, 1);
249  PG_FREE_IF_COPY(type, 2);
250 
251  if (err)
252  {
253  pfree(res);
254  ereport(ERROR,
255  (errcode(ERRCODE_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION),
256  errmsg("encrypt error: %s", px_strerror(err))));
257  }
258 
259  SET_VARSIZE(res, VARHDRSZ + rlen);
261 }
#define px_combo_encrypt_len(c, dlen)
Definition: px.h:218
#define px_combo_encrypt(c, data, dlen, res, rlen)
Definition: px.h:222

References data, ereport, err(), errcode(), errmsg(), ERROR, find_provider(), sort-test::key, palloc(), pfree(), PG_FREE_IF_COPY, PG_GETARG_BYTEA_PP, PG_GETARG_TEXT_PP, PG_RETURN_BYTEA_P, px_combo_encrypt, px_combo_encrypt_len, px_combo_free, px_combo_init, px_find_combo(), px_strerror(), res, SET_VARSIZE, type, VARDATA, VARDATA_ANY, VARHDRSZ, and VARSIZE_ANY_EXHDR.

◆ pg_encrypt_iv()

Datum pg_encrypt_iv ( PG_FUNCTION_ARGS  )

Definition at line 315 of file pgcrypto.c.

316 {
317  int err;
318  bytea *data,
319  *key,
320  *iv,
321  *res;
322  text *type;
323  PX_Combo *c;
324  unsigned dlen,
325  klen,
326  ivlen,
327  rlen;
328 
329  type = PG_GETARG_TEXT_PP(3);
330  c = find_provider(type, (PFN) px_find_combo, "Cipher", 0);
331 
333  key = PG_GETARG_BYTEA_PP(1);
334  iv = PG_GETARG_BYTEA_PP(2);
335  dlen = VARSIZE_ANY_EXHDR(data);
336  klen = VARSIZE_ANY_EXHDR(key);
337  ivlen = VARSIZE_ANY_EXHDR(iv);
338 
339  rlen = px_combo_encrypt_len(c, dlen);
340  res = palloc(VARHDRSZ + rlen);
341 
342  err = px_combo_init(c, (uint8 *) VARDATA_ANY(key), klen,
343  (uint8 *) VARDATA_ANY(iv), ivlen);
344  if (!err)
345  err = px_combo_encrypt(c, (uint8 *) VARDATA_ANY(data), dlen,
346  (uint8 *) VARDATA(res), &rlen);
347 
348  px_combo_free(c);
349 
350  if (err)
351  ereport(ERROR,
352  (errcode(ERRCODE_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION),
353  errmsg("encrypt_iv error: %s", px_strerror(err))));
354 
355  SET_VARSIZE(res, VARHDRSZ + rlen);
356 
357  PG_FREE_IF_COPY(data, 0);
358  PG_FREE_IF_COPY(key, 1);
359  PG_FREE_IF_COPY(iv, 2);
360  PG_FREE_IF_COPY(type, 3);
361 
363 }

References data, ereport, err(), errcode(), errmsg(), ERROR, find_provider(), sort-test::key, palloc(), PG_FREE_IF_COPY, PG_GETARG_BYTEA_PP, PG_GETARG_TEXT_PP, PG_RETURN_BYTEA_P, px_combo_encrypt, px_combo_encrypt_len, px_combo_free, px_combo_init, px_find_combo(), px_strerror(), res, SET_VARSIZE, type, VARDATA, VARDATA_ANY, VARHDRSZ, and VARSIZE_ANY_EXHDR.

◆ PG_FUNCTION_INFO_V1() [1/11]

PG_FUNCTION_INFO_V1 ( pg_crypt  )

◆ PG_FUNCTION_INFO_V1() [2/11]

PG_FUNCTION_INFO_V1 ( pg_decrypt  )

◆ PG_FUNCTION_INFO_V1() [3/11]

PG_FUNCTION_INFO_V1 ( pg_decrypt_iv  )

◆ PG_FUNCTION_INFO_V1() [4/11]

PG_FUNCTION_INFO_V1 ( pg_digest  )

◆ PG_FUNCTION_INFO_V1() [5/11]

PG_FUNCTION_INFO_V1 ( pg_encrypt  )

◆ PG_FUNCTION_INFO_V1() [6/11]

PG_FUNCTION_INFO_V1 ( pg_encrypt_iv  )

◆ PG_FUNCTION_INFO_V1() [7/11]

PG_FUNCTION_INFO_V1 ( pg_gen_salt  )

◆ PG_FUNCTION_INFO_V1() [8/11]

PG_FUNCTION_INFO_V1 ( pg_gen_salt_rounds  )

◆ PG_FUNCTION_INFO_V1() [9/11]

PG_FUNCTION_INFO_V1 ( pg_hmac  )

◆ PG_FUNCTION_INFO_V1() [10/11]

PG_FUNCTION_INFO_V1 ( pg_random_bytes  )

◆ PG_FUNCTION_INFO_V1() [11/11]

PG_FUNCTION_INFO_V1 ( pg_random_uuid  )

◆ pg_gen_salt()

Datum pg_gen_salt ( PG_FUNCTION_ARGS  )

Definition at line 134 of file pgcrypto.c.

135 {
136  text *arg0 = PG_GETARG_TEXT_PP(0);
137  int len;
138  char buf[PX_MAX_SALT_LEN + 1];
139 
140  text_to_cstring_buffer(arg0, buf, sizeof(buf));
141  len = px_gen_salt(buf, buf, 0);
142  if (len < 0)
143  ereport(ERROR,
144  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
145  errmsg("gen_salt: %s", px_strerror(len))));
146 
147  PG_FREE_IF_COPY(arg0, 0);
148 
150 }
int px_gen_salt(const char *salt_type, char *buf, int rounds)
Definition: px-crypt.c:132
#define PX_MAX_SALT_LEN
Definition: px-crypt.h:39
text * cstring_to_text_with_len(const char *s, int len)
Definition: varlena.c:196
void text_to_cstring_buffer(const text *src, char *dst, size_t dst_len)
Definition: varlena.c:248

References buf, cstring_to_text_with_len(), ereport, errcode(), errmsg(), ERROR, len, PG_FREE_IF_COPY, PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, px_gen_salt(), PX_MAX_SALT_LEN, px_strerror(), and text_to_cstring_buffer().

◆ pg_gen_salt_rounds()

Datum pg_gen_salt_rounds ( PG_FUNCTION_ARGS  )

Definition at line 156 of file pgcrypto.c.

157 {
158  text *arg0 = PG_GETARG_TEXT_PP(0);
159  int rounds = PG_GETARG_INT32(1);
160  int len;
161  char buf[PX_MAX_SALT_LEN + 1];
162 
163  text_to_cstring_buffer(arg0, buf, sizeof(buf));
164  len = px_gen_salt(buf, buf, rounds);
165  if (len < 0)
166  ereport(ERROR,
167  (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
168  errmsg("gen_salt: %s", px_strerror(len))));
169 
170  PG_FREE_IF_COPY(arg0, 0);
171 
173 }
#define PG_GETARG_INT32(n)
Definition: fmgr.h:269

References buf, cstring_to_text_with_len(), ereport, errcode(), errmsg(), ERROR, len, PG_FREE_IF_COPY, PG_GETARG_INT32, PG_GETARG_TEXT_PP, PG_RETURN_TEXT_P, px_gen_salt(), PX_MAX_SALT_LEN, px_strerror(), and text_to_cstring_buffer().

◆ pg_hmac()

Datum pg_hmac ( PG_FUNCTION_ARGS  )

Definition at line 91 of file pgcrypto.c.

92 {
93  bytea *arg;
94  bytea *key;
95  text *name;
96  unsigned len,
97  hlen,
98  klen;
99  PX_HMAC *h;
100  bytea *res;
101 
102  name = PG_GETARG_TEXT_PP(2);
103 
104  /* will give error if fails */
105  h = find_provider(name, (PFN) px_find_hmac, "HMAC", 0);
106 
107  hlen = px_hmac_result_size(h);
108 
109  res = (text *) palloc(hlen + VARHDRSZ);
110  SET_VARSIZE(res, hlen + VARHDRSZ);
111 
112  arg = PG_GETARG_BYTEA_PP(0);
113  key = PG_GETARG_BYTEA_PP(1);
115  klen = VARSIZE_ANY_EXHDR(key);
116 
117  px_hmac_init(h, (uint8 *) VARDATA_ANY(key), klen);
119  px_hmac_finish(h, (uint8 *) VARDATA(res));
120  px_hmac_free(h);
121 
122  PG_FREE_IF_COPY(arg, 0);
123  PG_FREE_IF_COPY(key, 1);
124  PG_FREE_IF_COPY(name, 2);
125 
127 }
int px_find_hmac(const char *name, PX_HMAC **res)
Definition: px-hmac.c:142
#define px_hmac_result_size(hmac)
Definition: px.h:198
#define px_hmac_finish(hmac, buf)
Definition: px.h:203
#define px_hmac_update(hmac, data, dlen)
Definition: px.h:202
#define px_hmac_init(hmac, key, klen)
Definition: px.h:201
#define px_hmac_free(hmac)
Definition: px.h:204
Definition: px.h:122

References arg, find_provider(), sort-test::key, len, name, palloc(), PG_FREE_IF_COPY, PG_GETARG_BYTEA_PP, PG_GETARG_TEXT_PP, PG_RETURN_BYTEA_P, px_find_hmac(), px_hmac_finish, px_hmac_free, px_hmac_init, px_hmac_result_size, px_hmac_update, res, SET_VARSIZE, VARDATA, VARDATA_ANY, VARHDRSZ, and VARSIZE_ANY_EXHDR.

◆ pg_random_bytes()

Datum pg_random_bytes ( PG_FUNCTION_ARGS  )

Definition at line 423 of file pgcrypto.c.

424 {
425  int len = PG_GETARG_INT32(0);
426  bytea *res;
427 
428  if (len < 1 || len > 1024)
429  ereport(ERROR,
430  (errcode(ERRCODE_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION),
431  errmsg("Length not in range")));
432 
433  res = palloc(VARHDRSZ + len);
435 
436  /* generate result */
439 
441 }
bool pg_strong_random(void *buf, size_t len)
void px_THROW_ERROR(int err)
Definition: px.c:93
#define PXE_NO_RANDOM
Definition: px.h:63

References ereport, errcode(), errmsg(), ERROR, len, palloc(), PG_GETARG_INT32, PG_RETURN_BYTEA_P, pg_strong_random(), px_THROW_ERROR(), PXE_NO_RANDOM, res, SET_VARSIZE, VARDATA, and VARHDRSZ.

◆ pg_random_uuid()

Datum pg_random_uuid ( PG_FUNCTION_ARGS  )

Definition at line 447 of file pgcrypto.c.

448 {
449  /* redirect to built-in function */
450  return gen_random_uuid(fcinfo);
451 }
Datum gen_random_uuid(PG_FUNCTION_ARGS)
Definition: uuid.c:405

References gen_random_uuid().

Variable Documentation

◆ PG_MODULE_MAGIC

PG_MODULE_MAGIC

Definition at line 43 of file pgcrypto.c.