Argentini.Halide.H3Secure.DecryptInt32 C# (CSharp) Method

DecryptInt32() public static method

Triple DES 256 bit integer decryption.
public static DecryptInt32 ( String data, Byte key ) : Int32?
data String String to decrypt.
key Byte 24 byte array key for decrypting the data. This must match the key used to encrypt the data.
return Int32?
        public static Int32? DecryptInt32(String data, Byte[] key)
        {
            return DecryptInt32(data, key, iv);
        }

Same methods

H3Secure::DecryptInt32 ( String data ) : Int32?
H3Secure::DecryptInt32 ( String data, Byte key, Byte ivec ) : Int32?
H3Secure::DecryptInt32 ( String data, String key, String ivec ) : Int32?