/usr/share/perl5/Web/ID/SAN.pm is in libweb-id-perl 1.927-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | package Web::ID::SAN;
use 5.010;
use utf8;
BEGIN {
$Web::ID::SAN::AUTHORITY = 'cpan:TOBYINK';
$Web::ID::SAN::VERSION = '1.927';
}
use Web::ID::Types -types;
use RDF::Query 2.900;
use URI 0;
use URI::Escape 0 qw/uri_escape/;
use Web::ID::RSAKey;
use Web::ID::Util;
use Moose;
use namespace::sweep;
has $_ => (
is => read_only,
isa => Str,
required => true,
coerce => false,
) for qw(type value);
has model => (
is => read_only,
isa => Model,
lazy_build => true,
);
has key_factory => (
is => read_only,
isa => CodeRef,
lazy_build => true,
);
sub _build_model
{
return Model->new;
}
my $default_key_factory = sub
{
my (%args) = @_;
return unless $args{exponent};
return unless $args{modulus};
Rsakey->new(%args);
};
sub _build_key_factory
{
return $default_key_factory;
}
sub uri_object
{
my ($self) = @_;
return Uri->coerce(sprintf 'urn:x-subject-alt-name:%s:%s', map {uri_escape $_} $self->type, $self->value);
}
sub to_string
{
my ($self) = @_;
sprintf('%s=%s', $self->type, $self->value);
}
sub associated_keys
{
return;
}
__PACKAGE__
__END__
=head1 NAME
Web::ID::SAN - represents a single name from a certificate's subjectAltName field
=head1 DESCRIPTION
=head2 Constructor
=over
=item C<< new >>
Standard Moose-style constructor.
=back
=head2 Attributes
=over
=item C<< type >>
Something like 'uniformResourceIdentifier' or 'rfc822Name'. A string.
=item C<< value >>
The name itself. A string.
=item C<< model >>
An RDF::Trine::Model representing data about the subject identified by
this name.
To be useful, the C<model> needs to be buildable automatically given
C<type> and C<value>.
=item C<< key_factory >>
This is similar to the C<san_factory> found in L<Web::ID::Certificate>.
It's a coderef used to construct L<Web::ID::RSAKey> objects.
=back
=head2 Methods
=over
=item C<< uri_object >>
Forces the name to take the form of a URI identifying the subject. It's
not always an especially interesting URI.
=item C<< to_string >>
A printable form of the name. Not always very pretty.
=item C<< associated_keys >>
Finds RSA keys associated with this name in C<model>, and returns them as
a list of L<Web::ID::RSAKey> objects.
=back
=head1 BUGS
Please report any bugs to
L<http://rt.cpan.org/Dist/Display.html?Queue=Web-ID>.
=head1 SEE ALSO
L<Web::ID>,
L<Web::ID::Certificate>,
L<Web::ID::SAN::Email>,
L<Web::ID::SAN::URI>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2012 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|