mirror of https://github.com/oxen-io/session-ios
41 lines
726 B
Objective-C
41 lines
726 B
Objective-C
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ByteParser : NSObject
|
|
|
|
@property (nonatomic, readonly) BOOL hasError;
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (instancetype)initWithData:(NSData *)data littleEndian:(BOOL)littleEndian;
|
|
|
|
#pragma mark - Short
|
|
|
|
- (uint16_t)shortAtIndex:(NSUInteger)index;
|
|
- (uint16_t)nextShort;
|
|
|
|
#pragma mark - Int
|
|
|
|
- (uint32_t)intAtIndex:(NSUInteger)index;
|
|
- (uint32_t)nextInt;
|
|
|
|
#pragma mark - Long
|
|
|
|
- (uint64_t)longAtIndex:(NSUInteger)index;
|
|
- (uint64_t)nextLong;
|
|
|
|
#pragma mark -
|
|
|
|
- (BOOL)readZero:(NSUInteger)length;
|
|
|
|
- (nullable NSData *)readBytes:(NSUInteger)length;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|