7 references to PostEBPrefix
System.Security.Cryptography (7)
System\Security\Cryptography\PemEncoding.cs (7)
137
if (pemData.Length < T.PreEBPrefix.Length + T.Ending.Length * 2 + T.
PostEBPrefix
.Length)
181
int postebLength = T.
PostEBPrefix
.Length + label.Length + T.Ending.Length;
234
int size = T.
PostEBPrefix
.Length + label.Length + T.Ending.Length;
236
T.
PostEBPrefix
.CopyTo(destination);
237
label.CopyTo(destination.Slice(T.
PostEBPrefix
.Length));
238
T.Ending.CopyTo(destination.Slice(T.
PostEBPrefix
.Length + label.Length));
622
charsWritten += Write(T.
PostEBPrefix
, destination, charsWritten);