示例#1
0
 public Cript(Boolean usarChaveInterna)
 {
     if (usarChaveInterna)
     {
         tDES = new TripleDESCript.TripleDES(_chaveInterna);
     }
 }
示例#2
0
        public Cript(CaseBusiness.Framework.ComplementaryCryptType complementaryCryptType)
        {
            _complementaryCryptType = complementaryCryptType;

            if (complementaryCryptType == ComplementaryCryptType.TripleDES)
            {
                tDES = new TripleDESCript.TripleDES();
            }
        }
示例#3
0
 public Cript(String pathPCI, String tipoCriptografia)
 {
     tDES = new TripleDESCript.TripleDES(pathPCI, tipoCriptografia);
 }
示例#4
0
 public Cript()
 {
     tDES = new TripleDESCript.TripleDES();
 }