Class: Keepass::Entry

Inherits:
Object
  • Object
show all
Defined in:
ext/keepass.c,
ext/keepass.c

Overview

A class representing an entry in a Keepass database.

Instance Method Summary collapse

Instance Method Details

#atimeObject

Returns the last access time of this entry.



503
504
505
506
507
# File 'ext/keepass.c', line 503

VALUE
rb_kp_entry_atime(VALUE self)
{
    return rb_ivar_get(self, rb_intern("@atime"));
}

#ctimeObject

Returns the creation time of this entry.



491
492
493
494
495
# File 'ext/keepass.c', line 491

VALUE
rb_kp_entry_ctime(VALUE self)
{
    return rb_ivar_get(self, rb_intern("@ctime"));
}

#etimeObject

Returns the expire time of this entry.



515
516
517
518
519
# File 'ext/keepass.c', line 515

VALUE
rb_kp_entry_etime(VALUE self)
{
    return rb_ivar_get(self, rb_intern("@etime"));
}

#mtimeObject

Returns the modification time of this entry.



479
480
481
482
483
# File 'ext/keepass.c', line 479

VALUE
rb_kp_entry_mtime(VALUE self)
{
    return rb_ivar_get(self, rb_intern("@mtime"));
}

#nameObject

Returns the name of this entry.



455
456
457
458
459
# File 'ext/keepass.c', line 455

VALUE
rb_kp_entry_name(VALUE self)
{
    return rb_ivar_get(self, rb_intern("@name"));
}

#passwordObject

Returns the password of this entry.



467
468
469
470
471
# File 'ext/keepass.c', line 467

VALUE
rb_kp_entry_password(VALUE self)
{
    return rb_ivar_get(self, rb_intern("@password"));
}