make cipher pub

This commit is contained in:
Jake Probst 2019-06-23 15:52:28 -07:00
parent f9b2567d8e
commit a1485dd8e7

View File

@ -6,7 +6,7 @@ use std::num::Wrapping as W;
const PC_STREAM_LENGTH: usize = 57; const PC_STREAM_LENGTH: usize = 57;
struct PSOPCCipher { pub struct PSOPCCipher {
stream: [u32; PC_STREAM_LENGTH], stream: [u32; PC_STREAM_LENGTH],
offset: u16, offset: u16,
} }