jj: make compression & encription public

This commit is contained in:
Jonathan Jenne 2019-02-05 13:36:31 +01:00
parent 69286492ca
commit 70ceeeb51a
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -5,7 +5,7 @@ Imports DigitalData.Modules.Logging
''' <summary>
''' https://stackoverflow.com/questions/10168240/encrypting-decrypting-a-string-in-c-sharp
''' </summary>
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