summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2018-04-25 12:07:40 +0000
committertb <>2018-04-25 12:07:40 +0000
commit2491be951ef4405dfb6881e8c595864751afa616 (patch)
treea30f2b22639babb72071cf77c0a10878f53fa8d2
parentb32b7334e82988558a84760f424f8dd93d902393 (diff)
downloadopenbsd-2491be951ef4405dfb6881e8c595864751afa616.tar.gz
openbsd-2491be951ef4405dfb6881e8c595864751afa616.tar.bz2
openbsd-2491be951ef4405dfb6881e8c595864751afa616.zip
remove whitespace before closing parens
-rw-r--r--src/lib/libcrypto/asn1/asn1.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/asn1/asn1.h b/src/lib/libcrypto/asn1/asn1.h
index a20471a7ec..80923ad6e4 100644
--- a/src/lib/libcrypto/asn1/asn1.h
+++ b/src/lib/libcrypto/asn1/asn1.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: asn1.h,v 1.46 2018/04/25 11:48:21 tb Exp $ */ 1/* $OpenBSD: asn1.h,v 1.47 2018/04/25 12:07:40 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -759,7 +759,7 @@ void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value);
759int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value); 759int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value);
760int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b); 760int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
761 761
762ASN1_OBJECT *ASN1_OBJECT_new(void ); 762ASN1_OBJECT *ASN1_OBJECT_new(void);
763void ASN1_OBJECT_free(ASN1_OBJECT *a); 763void ASN1_OBJECT_free(ASN1_OBJECT *a);
764int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp); 764int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp);
765ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp, 765ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
@@ -775,7 +775,7 @@ ASN1_STRING *ASN1_STRING_new(void);
775void ASN1_STRING_free(ASN1_STRING *a); 775void ASN1_STRING_free(ASN1_STRING *a);
776int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str); 776int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
777ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *a); 777ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *a);
778ASN1_STRING *ASN1_STRING_type_new(int type ); 778ASN1_STRING *ASN1_STRING_type_new(int type);
779int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b); 779int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b);
780 /* Since this is used to store all sorts of things, via macros, for now, make 780 /* Since this is used to store all sorts of things, via macros, for now, make
781 its data void * */ 781 its data void * */
@@ -795,7 +795,7 @@ extern const ASN1_ITEM ASN1_BIT_STRING_it;
795int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp); 795int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp);
796ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a, 796ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
797 const unsigned char **pp, long length); 797 const unsigned char **pp, long length);
798int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length ); 798int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length);
799int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value); 799int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value);
800int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n); 800int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n);
801int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a, 801int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a,
@@ -1113,7 +1113,7 @@ int ASN1_TYPE_get_int_octetstring(const ASN1_TYPE *a, long *num,
1113STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len, 1113STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len,
1114 d2i_of_void *d2i, void (*free_func)(OPENSSL_BLOCK)); 1114 d2i_of_void *d2i, void (*free_func)(OPENSSL_BLOCK));
1115unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d, 1115unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d,
1116 unsigned char **buf, int *len ); 1116 unsigned char **buf, int *len);
1117void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i); 1117void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i);
1118void *ASN1_item_unpack(const ASN1_STRING *oct, const ASN1_ITEM *it); 1118void *ASN1_item_unpack(const ASN1_STRING *oct, const ASN1_ITEM *it);
1119ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, 1119ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d,