Class: Krb5Keytab::Entry
- Inherits:
-
Object
- Object
- Krb5Keytab::Entry
- Defined in:
- ext/krb5_auth/keytab_entry.c
Instance Method Summary (collapse)
-
- (Object) Krb5Auth::Krb5::Keytab::Entry.new
constructor
Creates and returns a new Krb5Auth::Krb5::Keytab::Entry object.
-
- (Object) inspect
A custom inspect method for nicer output.
Constructor Details
- (Object) Krb5Auth::Krb5::Keytab::Entry.new
Creates and returns a new Krb5Auth::Krb5::Keytab::Entry object. These objects are what is typically returned from the various Krb5::Keytab methods.
|
|
# File 'ext/krb5_auth/keytab_entry.c'
/*
* call-seq:
*
* Krb5Auth::Krb5::Keytab::Entry.new
*
* Creates and returns a new Krb5Auth::Krb5::Keytab::Entry object. These
* objects are what is typically returned from the various Krb5::Keytab
* methods.
*/
static VALUE rkrb5_kt_entry_initialize(VALUE self){
|
Instance Method Details
- (Object) inspect
A custom inspect method for nicer output.
|
|
# File 'ext/krb5_auth/keytab_entry.c'
/*
* A custom inspect method for nicer output.
*/
static VALUE rkrb5_kt_entry_inspect(VALUE self){
|