15 lines
214 B
Objective-C
15 lines
214 B
Objective-C
//
|
|
// OLMUtility.h
|
|
// olm
|
|
//
|
|
// Created by Chris Ballinger on 4/8/16.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface OLMUtility : NSObject
|
|
|
|
+ (NSMutableData*) randomBytesOfLength:(NSUInteger)length;
|
|
|
|
@end
|