diff options
author | tb <> | 2018-04-25 12:07:40 +0000 |
---|---|---|
committer | tb <> | 2018-04-25 12:07:40 +0000 |
commit | 2491be951ef4405dfb6881e8c595864751afa616 (patch) | |
tree | a30f2b22639babb72071cf77c0a10878f53fa8d2 | |
parent | b32b7334e82988558a84760f424f8dd93d902393 (diff) | |
download | openbsd-2491be951ef4405dfb6881e8c595864751afa616.tar.gz openbsd-2491be951ef4405dfb6881e8c595864751afa616.tar.bz2 openbsd-2491be951ef4405dfb6881e8c595864751afa616.zip |
remove whitespace before closing parens
-rw-r--r-- | src/lib/libcrypto/asn1/asn1.h | 10 |
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); | |||
759 | int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value); | 759 | int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value); |
760 | int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b); | 760 | int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b); |
761 | 761 | ||
762 | ASN1_OBJECT *ASN1_OBJECT_new(void ); | 762 | ASN1_OBJECT *ASN1_OBJECT_new(void); |
763 | void ASN1_OBJECT_free(ASN1_OBJECT *a); | 763 | void ASN1_OBJECT_free(ASN1_OBJECT *a); |
764 | int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp); | 764 | int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp); |
765 | ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp, | 765 | ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp, |
@@ -775,7 +775,7 @@ ASN1_STRING *ASN1_STRING_new(void); | |||
775 | void ASN1_STRING_free(ASN1_STRING *a); | 775 | void ASN1_STRING_free(ASN1_STRING *a); |
776 | int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str); | 776 | int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str); |
777 | ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *a); | 777 | ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *a); |
778 | ASN1_STRING *ASN1_STRING_type_new(int type ); | 778 | ASN1_STRING *ASN1_STRING_type_new(int type); |
779 | int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b); | 779 | int 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; | |||
795 | int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp); | 795 | int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp); |
796 | ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a, | 796 | ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a, |
797 | const unsigned char **pp, long length); | 797 | const unsigned char **pp, long length); |
798 | int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length ); | 798 | int ASN1_BIT_STRING_set(ASN1_BIT_STRING *a, unsigned char *d, int length); |
799 | int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value); | 799 | int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value); |
800 | int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n); | 800 | int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n); |
801 | int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a, | 801 | int 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, | |||
1113 | STACK_OF(OPENSSL_BLOCK) *ASN1_seq_unpack(const unsigned char *buf, int len, | 1113 | STACK_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)); |
1115 | unsigned char *ASN1_seq_pack(STACK_OF(OPENSSL_BLOCK) *safes, i2d_of_void *i2d, | 1115 | unsigned 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); |
1117 | void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i); | 1117 | void *ASN1_unpack_string(ASN1_STRING *oct, d2i_of_void *d2i); |
1118 | void *ASN1_item_unpack(const ASN1_STRING *oct, const ASN1_ITEM *it); | 1118 | void *ASN1_item_unpack(const ASN1_STRING *oct, const ASN1_ITEM *it); |
1119 | ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, | 1119 | ASN1_STRING *ASN1_pack_string(void *obj, i2d_of_void *i2d, |