-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
93 changed files
with
1,743 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-4 Bytes
(99%)
Frameworks/ObjectivePGP.xcframework/ios-arm64_armv7/ObjectivePGP.framework/Info.plist
Binary file not shown.
Binary file modified
BIN
+32.2 KB
(100%)
Frameworks/ObjectivePGP.xcframework/ios-arm64_armv7/ObjectivePGP.framework/ObjectivePGP
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...jectivePGP.xcframework/ios-arm64_armv7/ObjectivePGP.framework/PrivateHeaders/PGPKeySpec.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// Copyright (C) Marcin Krzyżanowski <[email protected]> | ||
// This software is provided 'as-is', without any express or implied warranty. | ||
// | ||
// THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY | ||
// INTERNATIONAL COPYRIGHT LAW. USAGE IS BOUND TO THE LICENSE AGREEMENT. | ||
// This notice may not be removed from this file. | ||
// | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <ObjectivePGP/PGPTypes.h> | ||
#import <ObjectivePGP/PGPCurveOID.h> | ||
#import <ObjectivePGP/PGPCurveKDFParameters.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
NS_SWIFT_NAME(KeySpec) @interface PGPKeySpec : NSObject | ||
|
||
@property (nonatomic) PGPPublicKeyAlgorithm keyAlgorithm; | ||
@property (nonatomic) PGPCurveOID *curve; | ||
@property (nonatomic) PGPCurveKDFParameters *kdfParameters; | ||
@property (nonatomic) int keyBitsLength; | ||
|
||
- (instancetype)initWithKeyAlgorithm:(PGPPublicKeyAlgorithm)algorithm withCurve:(PGPCurve)curve withKdfParameters:(PGPCurveKDFParameters*)kdfParameters; | ||
|
||
- (instancetype)initWithKeyAlgorithm:(PGPPublicKeyAlgorithm)algorithm withKeyBitsLength:(int)keyBitsLength; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.