[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.
19 lines
368 B
Objective-C
19 lines
368 B
Objective-C
//
|
|
// MPElementGeneratedEntity.h
|
|
// MasterPassword-iOS
|
|
//
|
|
// Created by Maarten Billemont on 17/07/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
#import "MPElementEntity.h"
|
|
|
|
|
|
@interface MPElementGeneratedEntity : MPElementEntity
|
|
|
|
@property (nonatomic, retain) NSNumber * counter_;
|
|
|
|
@end
|