Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / btls / btls-x509-revoked.h
1 //
2 //  btls-x509-revoked.h
3 //  MonoBtls
4 //
5 //  Created by Martin Baulig on 3/23/16.
6 //  Copyright © 2016 Xamarin. All rights reserved.
7 //
8
9 #ifndef __btls__btls_x509_revoked__
10 #define __btls__btls_x509_revoked__
11
12 #include <stdio.h>
13 #include <btls-ssl.h>
14 #include <btls-x509-crl.h>
15
16 MonoBtlsX509Revoked *
17 mono_btls_x509_revoked_new (MonoBtlsX509Crl *owner, X509_REVOKED *revoked);
18
19 void
20 mono_btls_x509_revoked_free (MonoBtlsX509Revoked *revoked);
21
22 int
23 mono_btls_x509_revoked_get_serial_number (MonoBtlsX509Revoked *revoked, char *buffer, int size);
24
25 int64_t
26 mono_btls_x509_revoked_get_revocation_date (MonoBtlsX509Revoked *revoked);
27
28 int
29 mono_btls_x509_revoked_get_reason (MonoBtlsX509Revoked *revoked);
30
31 int
32 mono_btls_x509_revoked_get_sequence (MonoBtlsX509Revoked *revoked);
33
34 #endif /* __btls__btls_x509_revoked__ */