コード例 #1
0
ファイル: Pkcs5Test.cs プロジェクト: twistys01/ripple-cs
            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
ファイル: Pkcs5Test.cs プロジェクト: KimikoMuffin/bc-csharp
            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
ファイル: Pkcs5Test.cs プロジェクト: twistys01/ripple-cs
 private void InitBlock(
     Pkcs5Test enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
コード例 #4
0
ファイル: Pkcs5Test.cs プロジェクト: KimikoMuffin/bc-csharp
 private void InitBlock(
     Pkcs5Test enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }