remove trailing '\'
PR: 1438
This commit is contained in:
parent
772e3c07b4
commit
34f0a19309
@ -99,7 +99,7 @@ extern "C" {
|
|||||||
#define ASN1_ITEM_start(itname) \
|
#define ASN1_ITEM_start(itname) \
|
||||||
const ASN1_ITEM * itname##_it(void) \
|
const ASN1_ITEM * itname##_it(void) \
|
||||||
{ \
|
{ \
|
||||||
static const ASN1_ITEM local_it = { \
|
static const ASN1_ITEM local_it = {
|
||||||
|
|
||||||
#define ASN1_ITEM_end(itname) \
|
#define ASN1_ITEM_end(itname) \
|
||||||
}; \
|
}; \
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
bl = ctx->cipher->block_size;\
|
bl = ctx->cipher->block_size;\
|
||||||
if(inl < bl) return 1;\
|
if(inl < bl) return 1;\
|
||||||
inl -= bl; \
|
inl -= bl; \
|
||||||
for(i=0; i <= inl; i+=bl) \
|
for(i=0; i <= inl; i+=bl)
|
||||||
|
|
||||||
#define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
|
#define BLOCK_CIPHER_func_ecb(cname, cprefix, kstruct, ksched) \
|
||||||
static int cname##_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) \
|
static int cname##_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) \
|
||||||
|
@ -67,7 +67,7 @@ if (ul != 0) \
|
|||||||
r-=((r)>>16); \
|
r-=((r)>>16); \
|
||||||
} \
|
} \
|
||||||
else \
|
else \
|
||||||
r=(-(int)a-b+1); /* assuming a or b is 0 and in range */ \
|
r=(-(int)a-b+1); /* assuming a or b is 0 and in range */
|
||||||
|
|
||||||
#ifdef undef
|
#ifdef undef
|
||||||
#define idea_mul(r,a,b,ul,sl) \
|
#define idea_mul(r,a,b,ul,sl) \
|
||||||
|
@ -222,7 +222,7 @@ typedef struct pem_ctx_st
|
|||||||
type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
|
type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
|
||||||
{ \
|
{ \
|
||||||
return(((type *(*)(D2I_OF(type),char *,FILE *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read))(d2i_##asn1, str,fp,x,cb,u)); \
|
return(((type *(*)(D2I_OF(type),char *,FILE *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read))(d2i_##asn1, str,fp,x,cb,u)); \
|
||||||
} \
|
}
|
||||||
|
|
||||||
#define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
|
#define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
|
||||||
int PEM_write_##name(FILE *fp, type *x) \
|
int PEM_write_##name(FILE *fp, type *x) \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user