mirror of
https://github.com/hholtmann/smcFanControl.git
synced 2025-11-04 19:49:16 +01:00
16 lines
412 B
Objective-C
16 lines
412 B
Objective-C
//
|
|
// NSFileManager+Verification.h
|
|
// Sparkle
|
|
//
|
|
// Created by Andy Matuschak on 3/16/06.
|
|
// Copyright 2006 Andy Matuschak. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
// For the paranoid folks!
|
|
@interface NSFileManager (SUVerification)
|
|
- (BOOL)validatePath:(NSString *)path withMD5Hash:(NSString *)hash;
|
|
- (BOOL)validatePath:(NSString *)path withEncodedDSASignature:(NSString *)encodedSignature;
|
|
@end
|