1Net::LDAP::SID(3) User Contributed Perl Documentation Net::LDAP::SID(3)
2
3
4
6 Net::LDAP::SID - Active Directory Security Identifier manipulation
7
9 my $sid = Net::LDAP::SID->new( $binary );
10 # or
11 my $sid = Net::LDAP::SID->new( $string );
12
13 print $sid->as_string;
14 print $sid->as_binary;
15
17 new
18 Constructor. Can pass either the binary or string representation of the
19 SID.
20
21 as_string
22 Returns string representation of SID.
23
24 as_binary
25 Returns binary representation of SID.
26
28 Peter Karman, "<karman at cpan.org>"
29
31 Please report any bugs or feature requests to "bug-net-ldap-sid at
32 rt.cpan.org", or through the web interface at
33 <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-LDAP-SID>. I will
34 be notified, and then you'll automatically be notified of progress on
35 your bug as I make changes.
36
38 You can find documentation for this module with the perldoc command.
39
40 perldoc Net::LDAP::SID
41
42 You can also look for information at:
43
44 · RT: CPAN's request tracker (report bugs here)
45
46 <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-LDAP-SID>
47
48 · AnnoCPAN: Annotated CPAN documentation
49
50 <http://annocpan.org/dist/Net-LDAP-SID>
51
52 · CPAN Ratings
53
54 <http://cpanratings.perl.org/d/Net-LDAP-SID>
55
56 · Search CPAN
57
58 <http://search.cpan.org/dist/Net-LDAP-SID/>
59
61 Copyright 2016 Peter Karman.
62
63 This program is free software; you can redistribute it and/or modify it
64 under the terms of the the Artistic License (2.0). You may obtain a
65 copy of the full license at:
66
67 <http://www.perlfoundation.org/artistic_license_2_0>
68
69 Any use, modification, and distribution of the Standard or Modified
70 Versions is governed by this Artistic License. By using, modifying or
71 distributing the Package, you accept this license. Do not use, modify,
72 or distribute the Package, if you do not accept this license.
73
74 If your Modified Version has been derived from a Modified Version made
75 by someone other than you, you are nevertheless required to ensure that
76 your Modified Version complies with the requirements of this license.
77
78 This license does not grant you the right to use any trademark, service
79 mark, tradename, or logo of the Copyright Holder.
80
81 This license includes the non-exclusive, worldwide, free-of-charge
82 patent license to make, have made, use, offer to sell, sell, import and
83 otherwise transfer the Package with respect to any patent claims
84 licensable by the Copyright Holder that are necessarily infringed by
85 the Package. If you institute patent litigation (including a cross-
86 claim or counterclaim) against any party alleging that the Package
87 constitutes direct or contributory patent infringement, then this
88 Artistic License to you shall terminate on the date that such
89 litigation is filed.
90
91 Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
92 AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
93 THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
94 PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
95 YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
96 CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
97 CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
98 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
99
100
101
102perl v5.32.0 2020-07-28 Net::LDAP::SID(3)