File: System\Security\Cryptography\Pkcs\Pkcs12ShroudedKeyBag.cs | Web Access |
Project: src\src\libraries\System.Security.Cryptography.Pkcs\src\System.Security.Cryptography.Pkcs.csproj (System.Security.Cryptography.Pkcs) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Security.Cryptography.Pkcs { public sealed class Pkcs12ShroudedKeyBag : Pkcs12SafeBag { public Pkcs12ShroudedKeyBag(ReadOnlyMemory<byte> encryptedPkcs8PrivateKey, bool skipCopy = false) : base(Oids.Pkcs12ShroudedKeyBag, encryptedPkcs8PrivateKey, skipCopy) { } public ReadOnlyMemory<byte> EncryptedPkcs8PrivateKey => EncodedBagValue; } } |