TSSAgent.h 497 B

1234567891011121314151617
  1. //
  2. // TSSAgent.h
  3. // nitoTV 4
  4. //
  5. // Created by Kevin Bradley on 1/28/17.
  6. // Copyright © 2017 Kevin Bradley. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface TSSAgent : NSObject
  10. + (void)img4TicketForURL:(NSString *)url withECID:(NSString *)ecid completion:(void(^)(NSDictionary *manifest))block;
  11. + (NSDictionary *)tssDictFromManifest:(NSDictionary *)manifest withChipID:(NSString *)ecid;
  12. + (NSDictionary *)img4TicketForURL:(NSString *)url withECID:(NSString *)ecid;
  13. @end