From 70ceeeb51acc6721258d3ac581e97b3660a18aea Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Tue, 5 Feb 2019 13:36:31 +0100 Subject: [PATCH] jj: make compression & encription public --- Filesystem/Compression.vb | 2 +- Filesystem/Encryption.vb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Filesystem/Compression.vb b/Filesystem/Compression.vb index 9edb4517..a1d5027e 100644 --- a/Filesystem/Compression.vb +++ b/Filesystem/Compression.vb @@ -2,7 +2,7 @@ Imports System.IO.Compression Imports DigitalData.Modules.Logging -Friend Class Compression +Public Class Compression Private ReadOnly _logger As Logger Public Sub New(LogConfig As LogConfig) diff --git a/Filesystem/Encryption.vb b/Filesystem/Encryption.vb index 77f3631e..b7a3b95b 100644 --- a/Filesystem/Encryption.vb +++ b/Filesystem/Encryption.vb @@ -5,7 +5,7 @@ Imports DigitalData.Modules.Logging ''' ''' https://stackoverflow.com/questions/10168240/encrypting-decrypting-a-string-in-c-sharp ''' -Friend Class Encryption +Public Class Encryption ' This constant is used to determine the keysize of the encryption algorithm in bits. ' We divide this by 8 within the code below to get the equivalent number of bytes. Private Const KEY_SIZE As Integer = 256