mirror of
https://github.com/postgres/postgres.git
synced 2026-01-05 23:38:41 +03:00
8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list
provided by Andrew.
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $PostgreSQL: pgsql/contrib/pgcrypto/pgp-pubenc.c,v 1.4 2005/10/15 02:49:06 momjian Exp $
|
||||
* $PostgreSQL: pgsql/contrib/pgcrypto/pgp-pubenc.c,v 1.5 2009/06/11 14:48:52 momjian Exp $
|
||||
*/
|
||||
#include "postgres.h"
|
||||
|
||||
@@ -86,7 +86,7 @@ pad_eme_pkcs1_v15(uint8 *data, int data_len, int res_len, uint8 **res_p)
|
||||
}
|
||||
|
||||
static int
|
||||
create_secmsg(PGP_Context * ctx, PGP_MPI ** msg_p, int full_bytes)
|
||||
create_secmsg(PGP_Context *ctx, PGP_MPI **msg_p, int full_bytes)
|
||||
{
|
||||
uint8 *secmsg;
|
||||
int res,
|
||||
@@ -136,7 +136,7 @@ create_secmsg(PGP_Context * ctx, PGP_MPI ** msg_p, int full_bytes)
|
||||
}
|
||||
|
||||
static int
|
||||
encrypt_and_write_elgamal(PGP_Context * ctx, PGP_PubKey * pk, PushFilter * pkt)
|
||||
encrypt_and_write_elgamal(PGP_Context *ctx, PGP_PubKey *pk, PushFilter *pkt)
|
||||
{
|
||||
int res;
|
||||
PGP_MPI *m = NULL,
|
||||
@@ -167,7 +167,7 @@ err:
|
||||
}
|
||||
|
||||
static int
|
||||
encrypt_and_write_rsa(PGP_Context * ctx, PGP_PubKey * pk, PushFilter * pkt)
|
||||
encrypt_and_write_rsa(PGP_Context *ctx, PGP_PubKey *pk, PushFilter *pkt)
|
||||
{
|
||||
int res;
|
||||
PGP_MPI *m = NULL,
|
||||
@@ -193,7 +193,7 @@ err:
|
||||
}
|
||||
|
||||
int
|
||||
pgp_write_pubenc_sesskey(PGP_Context * ctx, PushFilter * dst)
|
||||
pgp_write_pubenc_sesskey(PGP_Context *ctx, PushFilter *dst)
|
||||
{
|
||||
int res;
|
||||
PGP_PubKey *pk = ctx->pub_key;
|
||||
|
||||
Reference in New Issue
Block a user