diff options
author | tb <> | 2023-11-02 20:25:48 +0000 |
---|---|---|
committer | tb <> | 2023-11-02 20:25:48 +0000 |
commit | 9338f2e503bcf0185656636d62eec3005ed27254 (patch) | |
tree | fd800d3429d3f24463ce1c5258cea95b8949a1ea /src | |
parent | 5d92b319c4fe7c18022f1a0aca4942ec8162b064 (diff) | |
download | openbsd-9338f2e503bcf0185656636d62eec3005ed27254.tar.gz openbsd-9338f2e503bcf0185656636d62eec3005ed27254.tar.bz2 openbsd-9338f2e503bcf0185656636d62eec3005ed27254.zip |
Fix a few bizarre line wraps in x509.h
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/x509/x509.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h index a3a37718b8..fe18202533 100644 --- a/src/lib/libcrypto/x509/x509.h +++ b/src/lib/libcrypto/x509/x509.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509.h,v 1.102 2023/10/26 08:01:56 tb Exp $ */ | 1 | /* $OpenBSD: x509.h,v 1.103 2023/11/02 20:25:48 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 | * |
@@ -1083,13 +1083,10 @@ const STACK_OF(X509_ATTRIBUTE) *PKCS8_pkey_get0_attrs(const PKCS8_PRIV_KEY_INFO | |||
1083 | int PKCS8_pkey_add1_attr_by_NID(PKCS8_PRIV_KEY_INFO *p8, int nid, int type, | 1083 | int PKCS8_pkey_add1_attr_by_NID(PKCS8_PRIV_KEY_INFO *p8, int nid, int type, |
1084 | const unsigned char *bytes, int len); | 1084 | const unsigned char *bytes, int len); |
1085 | 1085 | ||
1086 | int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj, | 1086 | int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj, int ptype, |
1087 | int ptype, void *pval, | 1087 | void *pval, unsigned char *penc, int penclen); |
1088 | unsigned char *penc, int penclen); | 1088 | int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg, const unsigned char **pk, |
1089 | int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg, | 1089 | int *ppklen, X509_ALGOR **pa, X509_PUBKEY *pub); |
1090 | const unsigned char **pk, int *ppklen, | ||
1091 | X509_ALGOR **pa, | ||
1092 | X509_PUBKEY *pub); | ||
1093 | 1090 | ||
1094 | int X509_check_trust(X509 *x, int id, int flags); | 1091 | int X509_check_trust(X509 *x, int id, int flags); |
1095 | int X509_TRUST_get_count(void); | 1092 | int X509_TRUST_get_count(void); |