示例#1
0
            internal PbeTest(
                Pkcs5Test enclosingInstance,
                int id,
                BufferedBlockCipher cipher,
                byte[]                          sample,
                int keySize)
            {
                InitBlock(enclosingInstance);

                this.id      = id;
                this.cipher  = cipher;
                this.sample  = sample;
                this.keySize = keySize;
            }
示例#2
0
            internal PbeTest(
                Pkcs5Test			enclosingInstance,
                int					id,
                BufferedBlockCipher	cipher,
                byte[]				sample,
                int					keySize)
            {
                InitBlock(enclosingInstance);

                this.id = id;
                this.cipher = cipher;
                this.sample = sample;
                this.keySize = keySize;
            }
示例#3
0
 private void InitBlock(
     Pkcs5Test enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
示例#4
0
 private void InitBlock(
     Pkcs5Test enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }