blob: 0de972502854db25e7672873e1059a3d0879d5cd (
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
+ (NSData*) randomBytesOfLength:(NSUInteger)length;
@end
|