1GSSAPI::OID(3) User Contributed Perl Documentation GSSAPI::OID(3)
2
3
4
6 GSSAPI::OID - methods for handling GSSAPI OIDs and some constant OIDs
7
9 use GSSAPI;
10
11 #$oid = GSSAPI::OID->new; # rarely needed or wanted
12
13 $status = GSSAPI::OID->from_str($oid, "{ 1 2 840 113554 1 2 1 1 }");
14 #
15 # only supported on MIT Kerberos
16 #
17
18 $status = $oid->to_str($str);
19 #
20 # only supported on MIT Kerberos
21 #
22
23 $status = $oid->inquire_names($oidset);
24
25 # Constant OIDs provided:
26 $oid = gss_nt_user_name;
27 $oid = gss_nt_machine_uid_name;
28 $oid = gss_nt_string_uid_name;
29 $oid = gss_nt_service_name;
30 $oid = gss_nt_exported_name;
31 $oid = gss_nt_service_name_v2;
32 $oid = gss_nt_krb5_name;
33 $oid = gss_nt_krb5_principal;
34 $oid = gss_mech_krb5;
35 $oid = gss_mech_krb5_old;
36 $oid = gss_mech_krb5_v2;
37
38 $oid = gss_mech_spnego;
39
40 # if your GSSAPI implementation supports
41 # SPNEGO (Heimdal 0.7 for example
42 # you can use mechtype OID::gss_mech_spnego.
43 #
44 # use GSSAPI::indicate_mechs( $oidset );
45 # to get the of mechtypes your implementation supports
46
47
48 $oid = gss_nt_hostbased_service; # GSS_C_NT_HOSTBASED_SERVICE
49
51 "GSSAPI::OID" objects are used as unique indentifiers/constants for
52 'mechanisisms' -- the particular protocol and version being used -- and
53 for the encodings used to represent names. In many cases you can
54 request the default mechanism or encoding for the implmentation by
55 using GSS_C_NO_OID. Check the description of the routine in rfc2743 if
56 you're not sure.
57
59 maintained by Achim Grolms <perl@grolmsnet.de>
60
61 originally written by Philip Guenther <pguen@cpan.org>
62
64 perl(1) GSSAPI(3p) GSSAPI::OID::Set(3p) RFC2743
65
66
67
68perl v5.34.0 2022-01-21 GSSAPI::OID(3)