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