713ec69a20
[ADDED] Settings for remembering and storing the master password. [ADDED] KeyChain used to store master password & hash. [IMPROVED] Remember whether help is hidden. [FIXED] Making passwords stored. [ADDED] Generated password counter. Edit stored passwords. [IMPROVED] UI prettier and better documented. [ADDED] Warnings when changing a site's password.
19 lines
349 B
Objective-C
19 lines
349 B
Objective-C
//
|
|
// OPElementGeneratedEntity.h
|
|
// OnePassword
|
|
//
|
|
// Created by Maarten Billemont on 16/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
#import "OPElementEntity.h"
|
|
|
|
|
|
@interface OPElementGeneratedEntity : OPElementEntity
|
|
|
|
@property (nonatomic) int16_t counter;
|
|
|
|
@end
|