Tagged Questions
0
votes
0answers
31 views
Frez Systems' MD5 code in VB and MSDN's C# MD5 code equivalent?
On a given system they used an MD5 hash from Frez Systems Frez Systems
They use this to "encrypt" the password of a user and store it in a database. My task is to write a C# application that needs to ...
0
votes
2answers
72 views
Standard library for AES encryption for VB.NET?
Is there a standard library to use for AES encryption for VB.NET? I wanted to try encrypting a string with a static private key.
I googled and there is a lot different variation on the net. I don't ...
0
votes
0answers
37 views
How to solve CWE-321: Use of Hard-coded Cryptographic Key? [closed]
I am trying to protect the key used to encrypt / decrypt values in my C# app.
My code is:
Private Shared key() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, ...
2
votes
0answers
64 views
AES encryption in VB .net output doesn't match website
I am trying to implement AES encryption on an embedded platform with matching version in VB .net. The embedded platform has hardware AES acceleration and gives me the same result as ...
0
votes
1answer
62 views
A first chance exception of type 'System.ArgumentNullException' occurred in mscorlib.dll
I a building a program that can ecnrypt and decrypt files using rijndael algorithm. But if i debug i get the following error:
A first chance exception of type 'System.ArgumentNullException' ...
1
vote
2answers
99 views
Visual basic substitution cipher
I am trying to create a substitution cipher using Visual Basic. I am new to programming and struggling so would appreciate some support please.
The cipher should do the following:
Ask the user for ...
0
votes
2answers
180 views
A licensing system for my (WinForms) application. Would this be secure enough? (Within reason)
I have researched on each element or system that I am willing to implement into a generic software licensing system for my soon-to-be apps (irrelevant, as this should work, or be usable on all of my ...
0
votes
1answer
84 views
Error Padding is invalid and cannot be removed
I get the Cryptographic Exception Padding is invalid and cannot be removed when trying to decrypt data. There are many questions on the net and on StackOverflow about this error, but I could not find ...
4
votes
1answer
143 views
Any way to PGP encrypt data stream and save it directly to the FTP without having to save it locally?
I have to send PGP encrypted file in asc format to FTP folder via sFTP. Is there a way to PGP encrypt a stream (which is CSV formatted stream) and push it to the sFTP without having to save it on ...
-1
votes
1answer
207 views
Decrypt a mesage using RSA in .NET - m**d mod p*q not working
I am experimenting with Mega encryption API, and I am stuck with the RSA decryption part.
The JavaScript used is this:
// Compute m**d mod p*q for RSA private key operations.
function RSAdecrypt(m, ...
1
vote
0answers
116 views
des file encryption corrupts file
i have written a class in vb.net to encrypt/decrypt files, but when i decrypt files like images or zips or office files, they look corrupted. But if i open the decrypted and original file in notepad ...
-2
votes
1answer
147 views
Encryption and Decryption of a text
I have tried using the following code to divide a string into equal arts each of 2 letters but it was useless:
Dim twoLetterWords = "The quick fox jumped over the lazy dog".
...
0
votes
1answer
144 views
QueryString Encryption and Related Characters Problems
I'm using a 64base data encryption function to Encrypt and Decrypt emil addresses sent in links and back in QueryString using :
Encrypt(txtEmail.Text).ToString
// Which generate something like ...
0
votes
0answers
67 views
mountable encrypted file container
I'm developing an application for ext hard drive encryption. I was wondering that how can I put all the hdd data inside an encrypted mountable container and enable the user to mount the container as a ...
1
vote
2answers
627 views
Encrypting / Decrypting in vb.net does not always return the same value
I have a program in which I write and read configuration files. When I write, I encrypt the whole file using the RijndaelManaged object in vb.net, and when I read I decrypt using the same value for ...
6
votes
1answer
89 views
VB .NET calculating differently to Java
Can someone explain to me why .net is calculating these differently to Java
The equation
(-1646490243 << 4) + 3333 ^ -1646490243 + -957401312 ^ (-1646490243 >> 5) + 4
Java calculates ...
2
votes
1answer
220 views
My Crypter Code Written in VB.NET has two Errors that I don't know how to solve?
I have some code that I wrote for a simple Crypter in VB.ET 2010 Express Edition. I tried to build it, and I get two Errors that I don't know how to fix.
Here is the Code
Public Class MainWindow ...
2
votes
2answers
910 views
Decompiling a vb.net application
I don't know if this is the correct place to post this question, so sorry if it is in the incorrect place.
Question:
How easy is it for a third-party person to decompile my vb.net application? I ...
-1
votes
1answer
324 views
Query string module encryption not working
I did the query string encryption of my project using the example provided here.
When I run the project locally it works fine:
But when I publish it to my server, the encryption simply doesn't ...
1
vote
0answers
71 views
error when trying to decrypt email address in vb
I am trying to decrypt email address in VB.NET but I am getting an error: "Invalid length for a Base-64 char array."
email address which gives error: abcadmin@googlemail.com
email address which ...
2
votes
1answer
347 views
SSRS Decrypting database column throws error “Value cannot be null. Parameter name: inputBuffer”
We have a database field that is encrypted in a C# MVC app using Entity Framework. That part works fine for encrypting and decrypting. We need to show this data decrypted in an SSRS report.
I've ...
3
votes
3answers
781 views
ASP.net Encrypt Files After Upload / Decrypt To User
I am doing some research and development into a possible project that my potential client is discussing with me.
I am looking at creating an asp.net 4.5 web application that will be accessed over the ...
0
votes
2answers
339 views
Encryption of email address in vb.net
I would like to know how I can encrypt an email address via vb.net code.
I found one sample which doesn't quite work with special characters and I am getting this error:
The input is not a valid ...
0
votes
1answer
72 views
vb.net file.encrypt not supported workaround
Other threads have covered that file.encrypt on vb is not supported on W7HE. however i cant find a simple work around for it, and the only other function i know for encryption is using:
Imports ...
1
vote
0answers
163 views
Object already exists exception in RSACryptoServiceProvider
First let me start by saying I'm sorry if I posted this question in the wrong place. I saw the entry at Object already exists in RSACryptoServiceProvider. I tried the solutions offered there. But, ...
2
votes
0answers
1k views
Rijndael 128 Encrypt/decrypt between vb.net and php
EDIT:
sorry for this question, i solved it immediately by myself ...
the only thing i had to do was to set the padding to zeros:
aes.Padding = PaddingMode.Zeros
i am trying to encrypt the traffic ...
0
votes
1answer
452 views
Remotely access MySQL with SSL using VB.NET
Is there any way to encrypt MySQL connections through coding in VB.NET ?
0
votes
1answer
320 views
AES (RijndaelManaged) Decrypt Extra Characters?
So, I'm using the RijndaelManaged class (.NET 2.0) to do AES-128 CBC encryption on small strings (around a dozen characters or less) in a config file. I've got everything working properly except that ...
3
votes
1answer
722 views
VB.NET Encryption using a password
I have a desktop application where the user has a library of encrypted ZIP files. The configuration file holds the master password to decrypt these ZIPs. The idea is that the user enters the program ...
0
votes
1answer
195 views
Encoding.Unicode.GetString error when resolving encryption Byte()
Have been trying to encrypt an xml file to a string so that I may transfer it over a service. The transmission is from server to server using a symetric key compiled into the code.
I have been using ...
0
votes
2answers
186 views
This code in VB net
I have decompiled an vb.net application with reflector
All string are encrypted with this method:
Public Shared Function smethod_0(ByVal string_0 As String) As String
Dim length As Integer = ...
3
votes
1answer
627 views
Cryptography in VB.net - decrypted file is larger than source file?
Hi ive been trying to use System.Security.Cryptography to encrypt and decrypt a file but its not working for me
this code
Private Sub EncryptFile(ByVal sInputFilename As String, ByVal ...
2
votes
2answers
433 views
How can I “randomize” an array of Colors in VB.NET (or C#) with a password?
I've got an array containing lots of "Color" and I want to change the order of this colors (random) but with a password: so another user can get the "original" (and correct) sequence of the array only ...
-2
votes
1answer
120 views
how to encrypt a string
Parameters.ReferencedAssemblies.Add("System.dll")
Parameters.ReferencedAssemblies.Add("System.Data.dll")
Parameters.ReferencedAssemblies.Add("System.Windows.Forms.dll")
is a way to encrypt ...
1
vote
1answer
49 views
cant understand this function
Public Function encrypt(ByVal message As Byte(), ByVal password As String) As Byte()
Dim passarr As Byte() = System.Text.Encoding.Default.GetBytes(password)
Randomize()
Dim rand As ...
0
votes
2answers
6k views
How to securely store connectionstring in app.config?
I need to know what is the common way to store a SQL server connection string for an application in VB.NET.
I have searched the net and I found answers to each of the following questions:
How do I ...
-1
votes
1answer
363 views
Encrypt/Decrypt between VB2008 and Android
I use these code to encrypt any plain text in vb2008.
I want decrypt and use generated file in my app in android.
I know that put files in assets folder and i use it.
this code use Cryptography to ...
0
votes
1answer
102 views
Dataencryption via VB.NET with TCPIP
I wrote some code where I establish a TCPIP-Connection between a server and a client and managed to send data from the client to the server.
Now i want to encrypt the data, with ...
0
votes
1answer
781 views
Simple function to encrypt and decrypt a script
I have two functions that are supposed to encrypt and decrypt a string but the encrypt function returns a different encrypted string for the same text everytime. What have I done wrong?
Public ...
0
votes
1answer
357 views
VB.Net using RSA encryption
is there anyway that I can convert this to use RSA encryption? im kinda new to VB.Net and even worse at encryption. thanks
Imports System.Text
Imports System.Security.Cryptography
Imports System.IO
...
0
votes
1answer
797 views
VB.Net DES encryption function, to Triple DES
Public Shared Function DESEncrypt(ByVal Data As String, ByVal Key As String) As Byte()
Dim IV() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF}
Try
...
1
vote
2answers
1k views
How secure is VB.NET Rijndael Managed Encryption or AES?
I am using a slightly modified version of this code. to create a mission critical application. That files that will be encrypted are very important. This has to be done from scratch because there are ...
1
vote
3answers
370 views
Store SHA256 hash in Access Database
I'm trying to figure out how to store a hash in my Access Database. Now I have generated a hash by salting a user password with the User ID (not highly secure I know, but plenty for my purposes). I ...
0
votes
3answers
3k views
AES encryption/decryption
Here is some code that works well for strings:
Public Function AESEncrypt(ByVal PlainText As String, ByVal Password As String, ByVal salt As String)
Dim HashAlgorithm As String = "SHA1" 'Can be ...
0
votes
0answers
256 views
Best way to encrypt or decrypt a password being passed in a soap header
I have a soap header that is used for authentication on a web service and I want to simply encrypt the user name and password as it is passed from the client to the server.
This should be something ...
0
votes
1answer
373 views
how to save password of gmail?
[using vb 2008]
in one of my open source apps, I have to work with gmail atom feeds.
Right now, I am using AES to encrypt the gmail password and store it. (the key is the MAC address of the system ...
1
vote
1answer
973 views
Decrypting ASPNET_Membership Password
I am trying to decrypt my password stored in aspnet_membership table...
I am using the following code,
Dim encodedPassword() As Byte = System.Text.Encoding.UTF8.GetBytes(password)
...
2
votes
3answers
526 views
Secure data in VB.NET?
My VB.NET application has a very important boolean variable. I need to be able to save it "somewhere" and read it back in the future (even if the application is closed).
Currently, I store the ...
0
votes
1answer
586 views
Convert Encryption Algorithm from VB.NET to Java (Android)
i'm using the following algorithm to encrypt and decrypt a string in VB.NET and wanted to do that same method in Android also. can anyone tell me the similar algorithm for Android (Java)
Encryption:
...
2
votes
1answer
161 views
Should I encrypt serialized file?
I have an artificial intelligence project, it has trained neural networks (The neural networks are some classes and structs in my program). I'm serializing structs using ...




