mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
17 lines
234 B
Objective-C
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
|
|
|
|
|
|
|