The only modifications are those necessary to build as part of SSK. The follow-up commits will clean that up a bit.
18 lines
253 B
Objective-C
18 lines
253 B
Objective-C
//
|
|
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/NSData.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSData (messagePadding)
|
|
|
|
- (NSData *)removePadding;
|
|
|
|
- (NSData *)paddedMessageBody;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|