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