PNXMPPFramework/Authentication/SCRAM-SHA-1/XMPPSCRAMSHA1Authentication.h
2016-02-24 16:56:39 +01:00

22 lines
377 B
Objective-C

//
// XMPPSCRAMSHA1Authentication.h
// iPhoneXMPP
//
// Created by David Chiles on 3/21/14.
//
//
#import <Foundation/Foundation.h>
#import "XMPPSASLAuthentication.h"
#import "XMPPStream.h"
@interface XMPPSCRAMSHA1Authentication : NSObject <XMPPSASLAuthentication>
@end
@interface XMPPStream (XMPPSCRAMSHA1Authentication)
- (BOOL)supportsSCRAMSHA1Authentication;
@end