diff options
author | jsing <> | 2018-02-14 16:18:10 +0000 |
---|---|---|
committer | jsing <> | 2018-02-14 16:18:10 +0000 |
commit | badad72c27155e042a4ba77f179c0771b373d3fa (patch) | |
tree | b297126127d43135ef5a064121f968a4e8a6d410 /src/lib/libcrypto/x509 | |
parent | 913c1940295492c07a0e82ccce38a16ac66ad1e9 (diff) | |
download | openbsd-badad72c27155e042a4ba77f179c0771b373d3fa.tar.gz openbsd-badad72c27155e042a4ba77f179c0771b373d3fa.tar.bz2 openbsd-badad72c27155e042a4ba77f179c0771b373d3fa.zip |
Provide X509_get_signature_nid().
Diffstat (limited to 'src/lib/libcrypto/x509')
-rw-r--r-- | src/lib/libcrypto/x509/x509.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h index 056b6d118c..cda89ac5af 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.26 2016/12/27 16:05:57 jsing Exp $ */ | 1 | /* $OpenBSD: x509.h,v 1.27 2018/02/14 16:18:10 jsing 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 | * |
@@ -888,6 +888,8 @@ void *X509_get_ex_data(X509 *r, int idx); | |||
888 | int i2d_X509_AUX(X509 *a,unsigned char **pp); | 888 | int i2d_X509_AUX(X509 *a,unsigned char **pp); |
889 | X509 * d2i_X509_AUX(X509 **a,const unsigned char **pp,long length); | 889 | X509 * d2i_X509_AUX(X509 **a,const unsigned char **pp,long length); |
890 | 890 | ||
891 | int X509_get_signature_nid(const X509 *x); | ||
892 | |||
891 | int X509_alias_set1(X509 *x, unsigned char *name, int len); | 893 | int X509_alias_set1(X509 *x, unsigned char *name, int len); |
892 | int X509_keyid_set1(X509 *x, unsigned char *id, int len); | 894 | int X509_keyid_set1(X509 *x, unsigned char *id, int len); |
893 | unsigned char * X509_alias_get0(X509 *x, int *len); | 895 | unsigned char * X509_alias_get0(X509 *x, int *len); |