Tpm2Lib.Tpm2.Import C# (CSharp) Method

Import() private method

private Import ( TpmHandle parentHandle, byte encryptionKey, TpmPublic objectPublic, TpmPrivate duplicate, byte inSymSeed, SymDefObject symmetricAlg ) : TpmPrivate
parentHandle TpmHandle
encryptionKey byte
objectPublic TpmPublic
duplicate TpmPrivate
inSymSeed byte
symmetricAlg SymDefObject
return TpmPrivate
        public TpmPrivate Import(
            TpmHandle parentHandle,
            byte[] encryptionKey,
            TpmPublic objectPublic,
            TpmPrivate duplicate,
            byte[] inSymSeed,
            SymDefObject symmetricAlg
        )
        {
            Tpm2ImportRequest inS = new Tpm2ImportRequest();
            inS.parentHandle = parentHandle;
            inS.encryptionKey = encryptionKey;
            inS.objectPublic = objectPublic;
            inS.duplicate = duplicate;
            inS.inSymSeed = inSymSeed;
            inS.symmetricAlg = symmetricAlg;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.Import, (TpmStructureBase) inS, typeof(Tpm2ImportResponse), out outSBase, 1, 0);
            Tpm2ImportResponse outS = (Tpm2ImportResponse) outSBase;
            return outS.outPrivate;
        }
        /// <summary>
Tpm2