.\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings. \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
. ds -- \(*W-
. ds PI pi
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
. ds L" ""
. ds R" ""
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds -- \|\(em\|
. ds PI \(*p
. ds L" ``
. ds R" ''
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "GSSAPI::OID 3"
.TH GSSAPI::OID 3 "2008-02-02" "perl v5.26.3" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
GSSAPI::OID \- methods for handling GSSAPI OIDs and some constant OIDs
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 1
\& use GSSAPI;
\&
\& #$oid = GSSAPI::OID\->new; # rarely needed or wanted
\&
\& $status = GSSAPI::OID\->from_str($oid, "{ 1 2 840 113554 1 2 1 1 }");
\& #
\& # only supported on MIT Kerberos
\& #
\&
\& $status = $oid\->to_str($str);
\& #
\& # only supported on MIT Kerberos
\& #
\&
\& $status = $oid\->inquire_names($oidset);
\&
\& # Constant OIDs provided:
\& $oid = gss_nt_user_name;
\& $oid = gss_nt_machine_uid_name;
\& $oid = gss_nt_string_uid_name;
\& $oid = gss_nt_service_name;
\& $oid = gss_nt_exported_name;
\& $oid = gss_nt_service_name_v2;
\& $oid = gss_nt_krb5_name;
\& $oid = gss_nt_krb5_principal;
\& $oid = gss_mech_krb5;
\& $oid = gss_mech_krb5_old;
\& $oid = gss_mech_krb5_v2;
\&
\& $oid = gss_mech_spnego;
\&
\& # if your GSSAPI implementation supports
\& # SPNEGO (Heimdal 0.7 for example
\& # you can use mechtype OID::gss_mech_spnego.
\& #
\& # use GSSAPI::indicate_mechs( $oidset );
\& # to get the of mechtypes your implementation supports
\&
\&
\& $oid = gss_nt_hostbased_service; # GSS_C_NT_HOSTBASED_SERVICE
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
\&\f(CW\*(C`GSSAPI::OID\*(C'\fR objects are used as unique indentifiers/constants
for 'mechanisisms' \*(-- the particular protocol and version being
used \*(-- and for the encodings used to represent names. In many
cases you can request the default mechanism or encoding for the
implmentation by using \s-1GSS_C_NO_OID.\s0 Check the description of the
routine in rfc2743 if you're not sure.
.SH "AUTHOR"
.IX Header "AUTHOR"
maintained by Achim Grolms <perl@grolmsnet.de>
.PP
originally written by
Philip Guenther <pguen@cpan.org>
.SH "SEE ALSO"
.IX Header "SEE ALSO"
\&\fBperl\fR\|(1)
\&\s-1\fBGSSAPI\s0\fR\|(3p)
\&\fBGSSAPI::OID::Set\fR\|(3p)
\&\s-1RFC2743\s0