mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 17:32:17 +00:00
Updated KeePassKit Submodule
Minor changes to localization
This commit is contained in:
Submodule KeePassKit updated: 4e8693c89c...3c0af98c46
@@ -48,7 +48,7 @@
|
|||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>2521</string>
|
<string>2522</string>
|
||||||
<key>LSMinimumSystemVersion</key>
|
<key>LSMinimumSystemVersion</key>
|
||||||
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
|
||||||
<key>NSHumanReadableCopyright</key>
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
|||||||
Binary file not shown.
@@ -7,7 +7,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#import "KPKTreeLoadingTest.h"
|
#import "KPKTreeLoadingTest.h"
|
||||||
#import "KPKTreeLoader.h"
|
#import "KPKTreeCryptor.h"
|
||||||
#import "KPKPassword.h"
|
#import "KPKPassword.h"
|
||||||
|
|
||||||
@implementation KPKTreeLoadingTest
|
@implementation KPKTreeLoadingTest
|
||||||
@@ -25,9 +25,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (void)testLoading {
|
- (void)testLoading {
|
||||||
KPKTreeLoader *loader = [[KPKTreeLoader alloc] initWithData:_data password:_password];
|
KPKTreeCryptor *cryptor = [KPKTreeCryptor treeCryptorWithData:_data password:_password];
|
||||||
KPKTree *tree = [loader loadTree:NULL];
|
KPKTree *tree = [cryptor decryptTree:NULL];
|
||||||
STAssertNil(tree, @"Loading should broken");
|
STAssertNotNil(tree, @"Loading should result in a tree object");
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|||||||
Reference in New Issue
Block a user