=pod =head1 NAME SSL_set_verify_result - override result of peer certificate verification =head1 SYNOPSIS #include void SSL_set_verify_result(SSL *ssl, long verify_result); =head1 DESCRIPTION SSL_set_verify_result() sets B of the object B to be the result of the verification of the X509 certificate presented by the peer, if any. =head1 NOTES SSL_set_verify_result() overrides the verification result. It only changes the verification result of the B object. It does not become part of the established session, so if the session is to be reused later, the original value will reappear. The valid codes for B are documented in L. =head1 RETURN VALUES SSL_set_verify_result() does not provide a return value. =head1 SEE ALSO L, L, L, L =cut Research Labs RPKI Toolkitgit user
aboutsummaryrefslogtreecommitdiff
blob: aa654bc10c9d74cc94fadb823edfc837e3f19bad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78