blob: 8acbf4066bcbb039f4b8ff422d862ea0565c0f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// OLMUtility.h
// olm
//
// Created by Chris Ballinger on 4/8/16.
//
//
#import <Foundation/Foundation.h>
@interface OLMUtility : NSObject
+ (NSMutableData*) randomBytesOfLength:(NSUInteger)length;
@end
|