1VOMS::Lite::Audit(3) User Contributed Perl Documentation VOMS::Lite::Audit(3)
2
3
4
6 VOMS::Lite::Audit - Perl extension for the creation of and parsing of
7 DER encoded Audit Extension for the VOMS::Lite module.
8
10 use VOMS::Lite::Audit;
11
12
13 my $DER = VOMS::Lite::Audit::Create('http://audit.endpoint.acme/');
14 my $DER = VOMS::Lite::Audit::Create('http://audit.endpoint.acme/',1); #Set to critical (Not Generally Used/Recognised)
15
16 my %Audit = %{ VOMS::Lite::Audit::Examine($DERencodedChunk) };
17 print %Audit{'URL'}."\n";
18 if ( %Audit{'critical'} ) {print "Is critical\n";}
19
20 NB this is an experimental extension:
21 There are known encoding issues that will change as the Auditing Service is developed.
22 When this happens this module will need updating to match.
23
25 Creates or Examines an Audit extension for Proxy certificates
26
27 EXPORT
28 None.
29
31 This module was originally designed for the NGS SARoNGS service at The
32 University of Manchester.
33
34 http://www.mc.manchester.ac.uk/projects/sarongs/ now
35 http://www.rcs.manchester.ac.uk/projects/sarongs/
36
37 Globus Incubator project
38 http://dev.globus.org/wiki/Incubator/Proxy-Audit
39
40 JISC funded project
41 http://www.jisc.ac.uk/whatwedo/programmes/aim/pcai.aspx
42
44 Mike Jones <mike.jones@manchester.ac.uk>
45
47 Copyright (C) 2010 by Mike Jones
48
49 This library is free software; you can redistribute it and/or modify it
50 under the same terms as Perl itself, either Perl version 5.8.3 or, at
51 your option, any later version of Perl 5 you may have available.
52
53
54
55perl v5.30.0 2019-07-26 VOMS::Lite::Audit(3)