diff --git a/src/crypto/pc.rs b/src/crypto/pc.rs index 09f1675..2efb3b3 100644 --- a/src/crypto/pc.rs +++ b/src/crypto/pc.rs @@ -6,7 +6,7 @@ use std::num::Wrapping as W; const PC_STREAM_LENGTH: usize = 57; -struct PSOPCCipher { +pub struct PSOPCCipher { stream: [u32; PC_STREAM_LENGTH], offset: u16, }