2 instantiations of Pkcs12SafeContents
System.Security.Cryptography.Pkcs (2)
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12Info.cs (1)
132
contentsArray[i] = new
Pkcs12SafeContents
(authSafeData[i]);
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12SafeContentsBag.cs (1)
35
Pkcs12SafeContents contents = new
Pkcs12SafeContents
(encodedValue);
16 references to Pkcs12SafeContents
System.Security.Cryptography.Pkcs (16)
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12Builder.cs (5)
27
Pkcs12SafeContents
safeContents,
39
Pkcs12SafeContents
safeContents,
71
Pkcs12SafeContents
safeContents,
83
Pkcs12SafeContents
safeContents,
114
public void AddSafeContentsUnencrypted(
Pkcs12SafeContents
safeContents)
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12Info.cs (7)
24
public ReadOnlyCollection<
Pkcs12SafeContents
> AuthenticatedSafe { get; private set; } = null!; // Initialized using object initializer
120
ReadOnlyCollection<
Pkcs12SafeContents
> authSafe;
124
authSafe = new ReadOnlyCollection<
Pkcs12SafeContents
>(Array.Empty<
Pkcs12SafeContents
>());
128
Pkcs12SafeContents
[] contentsArray = new
Pkcs12SafeContents
[authSafeData.Count];
135
authSafe = new ReadOnlyCollection<
Pkcs12SafeContents
>(contentsArray);
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12SafeContents.cs (1)
100
public Pkcs12SafeContentsBag AddNestedContents(
Pkcs12SafeContents
safeContents)
src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12SafeContentsBag.cs (3)
17
public
Pkcs12SafeContents
? SafeContents { get; private set; }
24
internal static Pkcs12SafeContentsBag Create(
Pkcs12SafeContents
copyFrom)
35
Pkcs12SafeContents
contents = new Pkcs12SafeContents(encodedValue);