8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978f869 commit 945083bCopy full SHA for 945083b
src/common/cipher.c
@@ -19,7 +19,7 @@
19
20
#include "common/cipher.h"
21
22
-static cipher_failure(void);
+static void cipher_failure(void);
23
24
PgCipherCtx *
25
pg_cipher_ctx_create(int cipher, uint8 *key, int klen, bool enc)
@@ -46,12 +46,12 @@ bool
46
pg_cipher_decrypt(PgCipherCtx *ctx, const unsigned char *ciphertext,
47
const int inlen, unsigned char *plaintext, int *outlen,
48
const unsigned char *iv, const int ivlen,
49
- const unsigned char *intag, const int taglen)
+ unsigned char *intag, const int taglen)
50
{
51
cipher_failure();
52
}
53
54
-static
+static void
55
cipher_failure(void)
56
57
#ifndef FRONTEND
0 commit comments