Commit bf3e200e authored by Matt Caswell's avatar Matt Caswell
Browse files

Removed duplicate definition of PKCS7_type_is_encrypted



Patch supplied by Matthieu Patou <mat@matws.net>, and modified to also
remove duplicate definition of PKCS7_type_is_digest.

PR#3551

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(cherry picked from commit e0fdea3e)
parent 55614f89
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -233,10 +233,6 @@ DECLARE_PKCS12_STACK_OF(PKCS7)
		(OBJ_obj2nid((a)->type) == NID_pkcs7_signedAndEnveloped)
#define PKCS7_type_is_data(a)   (OBJ_obj2nid((a)->type) == NID_pkcs7_data)
#define PKCS7_type_is_digest(a)   (OBJ_obj2nid((a)->type) == NID_pkcs7_digest)
#define PKCS7_type_is_encrypted(a) \
		(OBJ_obj2nid((a)->type) == NID_pkcs7_encrypted)

#define PKCS7_type_is_digest(a)   (OBJ_obj2nid((a)->type) == NID_pkcs7_digest)

#define PKCS7_set_detached(p,v) \
		PKCS7_ctrl(p,PKCS7_OP_SET_DETACHED_SIGNATURE,v,NULL)