From a1485dd8e74a8d7a73a0de72f88d4fb30550a96e Mon Sep 17 00:00:00 2001 From: Jake Probst Date: Sun, 23 Jun 2019 15:52:28 -0700 Subject: [PATCH] make cipher pub --- src/crypto/pc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }