Click here to Skip to main content
15,891,375 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionRijndael encryption not working Pin
maskrtnik0114-Nov-12 2:20
maskrtnik0114-Nov-12 2:20 
AnswerRe: Rijndael encryption not working Pin
Keith Barrow14-Nov-12 2:52
professionalKeith Barrow14-Nov-12 2:52 
GeneralRe: Rijndael encryption not working Pin
maskrtnik0114-Nov-12 3:08
maskrtnik0114-Nov-12 3:08 
GeneralRe: Rijndael encryption not working Pin
Keith Barrow14-Nov-12 3:26
professionalKeith Barrow14-Nov-12 3:26 
GeneralRe: Rijndael encryption not working Pin
Keith Barrow14-Nov-12 3:35
professionalKeith Barrow14-Nov-12 3:35 
GeneralRe: Rijndael encryption not working Pin
maskrtnik0114-Nov-12 3:48
maskrtnik0114-Nov-12 3:48 
GeneralRe: Rijndael encryption not working Pin
Keith Barrow14-Nov-12 4:05
professionalKeith Barrow14-Nov-12 4:05 
QuestionRe: Rijndael encryption not working Pin
maskrtnik0115-Nov-12 19:40
maskrtnik0115-Nov-12 19:40 
Maybe it is stable now. But there is new problem. I have tried decrypting encrypted file, but it fails to decrypt, decrypted data absolutely do not match data which was encrypted. I am using this code:
VB
Public Sub Save(ByVal carrier As DataCarrier, ByVal password As String, ByVal filename As String)
        Try
            Using sha As New SHA512Managed
                Dim hash = sha.ComputeHash(Encoding.Default.GetBytes(password))
                Dim key As Byte() = New Byte(31) {}
                Dim iv As Byte() = New Byte(15) {}
                Array.Copy(hash, 0, key, 0, 32)
                Array.Copy(hash, 32, iv, 0, 16)
                Using aes As New RijndaelManaged, filestr As New FileStream(filename, FileMode.Create, FileAccess.Write)
                    Using cryptostr As New CryptoStream(filestr, aes.CreateEncryptor(key, iv), CryptoStreamMode.Write)
                        ExportData(carrier).Save(cryptostr)
                    End Using
                End Using
            End Using
        Catch ex As Exception
            Logging.Instance.WriteException(ex, TraceEventType.Error)
            MessageBox.Show(String.Format(My.Resources.UnhandledExceptionExString, ex.Message, ex.ToString), My.Application.Info.Title, MessageBoxButtons.OK, MessageBoxIcon.Error)
        End Try
    End Sub
    Public Function Load(ByVal password As String, ByVal filename As String) As XDocument
        Dim sha As SHA512Managed
        Dim aes As RijndaelManaged
        Dim trans As ICryptoTransform
        Dim cryptostr As CryptoStream
        Dim filestr As FileStream
        Try
            sha = New SHA512Managed()
            Dim hash = sha.ComputeHash(Encoding.Default.GetBytes(password))
            aes = New RijndaelManaged()
            Dim key As Byte() = New Byte(31) {}
            Dim iv As Byte() = New Byte(15) {}
            Array.Copy(hash, 0, key, 0, 32)
            Array.Copy(hash, 32, iv, 0, 16)
            trans = aes.CreateEncryptor(key, iv)
            filestr = New FileStream(filename, FileMode.Open)
            cryptostr = New CryptoStream(filestr, trans, CryptoStreamMode.Read)
            Return XDocument.Load(cryptostr)
        Catch ex As Exception
            Logging.Instance.WriteException(ex, TraceEventType.Error)
            MessageBox.Show(String.Format(My.Resources.UnhandledExceptionExString, ex.Message, ex.ToString), My.Application.Info.Title, MessageBoxButtons.OK, MessageBoxIcon.Error)
        Finally
            If cryptostr IsNot Nothing Then cryptostr.Dispose()
            If filestr IsNot Nothing Then filestr.Dispose()
            If trans IsNot Nothing Then trans.Dispose()
            If aes IsNot Nothing Then aes.Dispose()
            If sha IsNot Nothing Then sha.Dispose()
        End Try
    End Function


modified 17-Nov-12 11:23am.

GeneralRe: Rijndael encryption not working Pin
Dominick Marciano14-Nov-12 9:34
professionalDominick Marciano14-Nov-12 9:34 
GeneralRe: Rijndael encryption not working Pin
maskrtnik0114-Nov-12 18:21
maskrtnik0114-Nov-12 18:21 
AnswerRe: Rijndael encryption not working Pin
Dominick Marciano15-Nov-12 17:37
professionalDominick Marciano15-Nov-12 17:37 
GeneralRe: Rijndael encryption not working Pin
maskrtnik0115-Nov-12 19:37
maskrtnik0115-Nov-12 19:37 
QuestionRetrive date from sql server in system date format in VB6 application by a one time setting Pin
Johnson Antony13-Nov-12 13:34
Johnson Antony13-Nov-12 13:34 
AnswerRe: Retrive date from sql server in system date format in VB6 application by a one time setting Pin
Dave Kreskowiak13-Nov-12 14:00
mveDave Kreskowiak13-Nov-12 14:00 
QuestionHow to find out if a file is in use before reading the data in that file Pin
KreativeKai13-Nov-12 7:47
professionalKreativeKai13-Nov-12 7:47 
AnswerRe: How to find out if a file is in use before reading the data in that file Pin
Dave Kreskowiak13-Nov-12 8:09
mveDave Kreskowiak13-Nov-12 8:09 
GeneralRe: How to find out if a file is in use before reading the data in that file Pin
KreativeKai13-Nov-12 8:22
professionalKreativeKai13-Nov-12 8:22 
GeneralRe: How to find out if a file is in use before reading the data in that file Pin
KreativeKai13-Nov-12 8:46
professionalKreativeKai13-Nov-12 8:46 
AnswerRe: How to find out if a file is in use before reading the data in that file Pin
KreativeKai13-Nov-12 8:13
professionalKreativeKai13-Nov-12 8:13 
GeneralRe: How to find out if a file is in use before reading the data in that file Pin
Dave Kreskowiak13-Nov-12 9:57
mveDave Kreskowiak13-Nov-12 9:57 
AnswerRe: How to find out if a file is in use before reading the data in that file Pin
Eddy Vluggen13-Nov-12 11:41
professionalEddy Vluggen13-Nov-12 11:41 
GeneralRe: How to find out if a file is in use before reading the data in that file Pin
KreativeKai14-Nov-12 1:37
professionalKreativeKai14-Nov-12 1:37 
GeneralRe: How to find out if a file is in use before reading the data in that file Pin
_Vitor Garcia_19-Nov-12 1:12
_Vitor Garcia_19-Nov-12 1:12 
QuestionVB Script for automatically turning off the monitor Pin
Prasan Cumar13-Nov-12 4:14
Prasan Cumar13-Nov-12 4:14 
AnswerRe: VB Script for automatically turning off the monitor Pin
Dave Kreskowiak13-Nov-12 4:59
mveDave Kreskowiak13-Nov-12 4:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.