21 lines
377 B
Objective-C
21 lines
377 B
Objective-C
//
|
|
// GCDWebServerDataResponse+Crypto.h
|
|
// kordophoned
|
|
//
|
|
// Created by James Magahern on 11/15/18.
|
|
// Copyright © 2018 James Magahern. All rights reserved.
|
|
//
|
|
|
|
#import <GCDWebServers/GCDWebServers.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface GCDWebServerDataResponse (Crypto)
|
|
|
|
+ (nullable instancetype)encryptedResponseWithJSONObject:(id)object;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|