Files
MacPass/MacPass/KPKEntry+OTP.h
2020-11-28 23:10:45 +01:00

26 lines
623 B
Objective-C

//
// KPKEntry+OTP.h
// MacPass
//
// Created by Michael Starke on 25.11.20.
// Copyright © 2020 HicknHack Software GmbH. All rights reserved.
//
#import <KeePassKit/KeePassKit.h>
NS_ASSUME_NONNULL_BEGIN
FOUNDATION_EXTERN NSString *const MPHMACOTPSeedAttributeKey;
FOUNDATION_EXTERN NSString *const MPHMACOTPConfigAttributeKey;
FOUNDATION_EXTERN NSString *const MPTOTPAuthAttributeKey;
FOUNDATION_EXTERN NSString *const MPTOTPSeedAttributeKey;
FOUNDATION_EXTERN NSString *const MPTOTPConfigAttributeKey;
@interface KPKEntry (OTP)
@property (readonly, assign, nonatomic) BOOL hasTOTP;
@end
NS_ASSUME_NONNULL_END