mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-24 02:49:45 +00:00
26 lines
623 B
Objective-C
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
|