NetIQ Mobile SDK for iOS  2.0
Access Manager iOS Framework for OAuth & OIDC
MFUtil.h
1 //
2 // MFUtil.h
3 // MFAuthLib
4 //
5 // Created by MicroFocus on 5/22/17.
6 // Copyright © 2017 Microfocus. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface MFUtil : NSObject
12 
13 + (NSData *) httpBodyForParams:(NSDictionary *) params;
14 
20 + (NSString *) percentEscapeString:(NSString *) str;
21 
26 + (NSString *) base64Encode:(NSString *) str;
27 
32 + (NSString *) base64Decode:(NSString *) base64EncodedStr;
33 
41 + (NSString *) vendorDeviceID;
42 
45 + (NSString *) sdkVersion;
46 
47 @end
NSString * vendorDeviceID()
Get the unique device Id. It uses the iOS identifierForVendor This is the same UDID for all apps from...
Definition: MFUtil.m:55
Definition: MFUtil.h:11
NSString * sdkVersion()
Get the SDK Version String.
Definition: MFUtil.m:60