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

DecryptInt32() public static method

Triple DES 256 bit integer decryption.
public static DecryptInt32 ( String data, String key, String ivec ) : Int32?
data String String to decrypt.
key String 24 byte key string for decrypting the data. This must match the key used to encrypt the data.
ivec String 18 byte initialization vector string for the decryption routine. This must match the init vector used to encrypt the data.
return Int32?
        public static Int32? DecryptInt32(String data, String key, String ivec)
        {
            return DecryptInt32(data, CreateBaseKey(key), CreateInitVector(ivec));
        }

Same methods

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