7be9884075
[IMPROVED] A master password key is now better abstracted in an object. [IMPROVED] A master password algorithm is now better astracted in an object. [ADDED] Elements now have a specific algorithm version. [ADDED] Automatic/explicit migration of elements. [ADDED] Searching outdated elements.
26 lines
421 B
Objective-C
26 lines
421 B
Objective-C
//
|
|
// MPElementEntity.m
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 17/07/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPElementEntity.h"
|
|
#import "MPUserEntity.h"
|
|
|
|
|
|
@implementation MPElementEntity
|
|
|
|
@dynamic content;
|
|
@dynamic lastUsed;
|
|
@dynamic name;
|
|
@dynamic requiresExplicitMigration_;
|
|
@dynamic type_;
|
|
@dynamic userName;
|
|
@dynamic uses_;
|
|
@dynamic version_;
|
|
@dynamic user;
|
|
|
|
@end
|