implemented crypto and started pairing

This commit is contained in:
Diego Waxemberg
2014-10-18 21:13:48 -04:00
parent bd91d74de8
commit 9226a05ad8
6 changed files with 142 additions and 2 deletions

14
Limelight/HttpManager.h Normal file
View File

@@ -0,0 +1,14 @@
//
// HttpManager.h
// Limelight
//
// Created by Diego Waxemberg on 10/16/14.
// Copyright (c) 2014 Limelight Stream. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface HttpManager : NSObject
- (NSString*) generatePIN;
- (NSString*) saltPIN:(NSString*)PIN;
@end