CryoEnix
Well-known member
Hi there guys, I wasnt sure which area to post in, so I thought this one best.
Im currently writing an encryption program side by side in Java and VB.NET, to compare performance differences and generally get the hang of Java (Im new to it). Problem is, I have this code to initialize the encryption class in VB:
How do I recreate this in Java? Ive tried all sorts, and any Java documentation I can find is way over my head. Any ideas?
Im currently writing an encryption program side by side in Java and VB.NET, to compare performance differences and generally get the hang of Java (Im new to it). Problem is, I have this code to initialize the encryption class in VB:
Code:
Dim NewEnc(1024) As ClassEnc6
For Num = 1 To UBound(NewEnc)
NewEnc(Num) = New ClassEnc6("encryptionkey")
Next
How do I recreate this in Java? Ive tried all sorts, and any Java documentation I can find is way over my head. Any ideas?