Vb.net is more than a decimal data type

I am using VB.net and I want to do some cryptographic computing with keys with a length of 1024 bits (128 bytes). I do not want to use the knowledge algorithm, so I can not use the security library. The largest data type in vb.net is decimal (16 bytes).

How can I do these calculations? is there any other data type that i don't know about?

+3
source share
2 answers

You might want to check out System.Numerics.BigInteger in .NET 4.0.

It might also seem interesting to you to check the computation of large numbers in VB.NET

+1
source

, , System.Security.Cryptography.

, , , .., byte[]. A byte[] , / .


( )

+1

All Articles