Files
swift-mirror/utils/benchmark/RC4/RC4.h
Arnold Schwaighofer 9c0bd85e63 Add an ObjC version of RC4
Swift SVN r17976
2014-05-12 23:41:11 +00:00

17 lines
234 B
Objective-C

@interface RC4 : NSObject {
uint8_t _i;
uint8_t _j;
uint8_t *_state;
}
- (id)initWithKey:(const unsigned char *)key length:(unsigned)len;
- (void)swapByIndex:(unsigned)x andIndex:(unsigned)y;
- (unsigned char) next;
@end