301366f1f1
[IMPROVED] MP-15: Audit and improve log messages. [ADDED] If an element's counter is 0, generate a time-based OTP instead. The OTP changes every 5 minutes.
19 lines
360 B
Objective-C
19 lines
360 B
Objective-C
//
|
|
// MPElementGeneratedEntity.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 16/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
#import "MPElementEntity.h"
|
|
|
|
|
|
@interface MPElementGeneratedEntity : MPElementEntity
|
|
|
|
@property (nonatomic, assign) int32_t counter;
|
|
|
|
@end
|