Re: 3DES between .NET and VB

From: Jeremy Williams (jeremydwill_at_netscape.com)
Date: 11/05/04


Date: Fri, 5 Nov 2004 14:23:16 -0600


"Joshua Ellul" <jellul@onvol.net> wrote in message
news:OTFcGk1wEHA.3024@TK2MSFTNGP14.phx.gbl...
> Hi,
>
> I have recently implemented the 3DES algorithm using .NET. However, all
> implementations I have found in VB 6 do not work correctly with this
> version. I imagine it is due to different string bases or some
> architectural difference. Could someone point me to some material that
> could help me implement the 3DES for VB that would comply with the .NET
> version.
>
> Best Regards,
>
> Joshua Ellul
>
>

I think your best bet is to use the facilities already provided in the .NET
framework class libraries. The TripleDESCryptoServiceProvider class is the
managed implementation (wrapper, I believe) for TripleDES. Also, there is a
TripleDES abstract class you can inherit from if you want a jump-start on
rolling your own implementation.


Loading