14 references to PeekEncodedValue
System.Security.Cryptography (14)
src\libraries\Common\src\System\Security\Cryptography\Asn1Reader\AsnValueReader.cs (1)
57ReadOnlySpan<byte> value = PeekEncodedValue();
src\libraries\Common\src\System\Security\Cryptography\KeyFormatHelper.cs (4)
44read = reader.PeekEncodedValue().Length; 75read = reader.PeekEncodedValue().Length; 116int read = reader.PeekEncodedValue().Length; 143int read = reader.PeekEncodedValue().Length;
src\libraries\Common\src\System\Security\Cryptography\KeyFormatHelper.Encrypted.cs (2)
106read = reader.PeekEncodedValue().Length; 287localRead = reader.PeekEncodedValue().Length;
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.cs (1)
81read = reader.PeekEncodedValue().Length;
System\Security\Cryptography\X509Certificates\CertificateRequest.Load.cs (2)
137int encodedLength = outer.PeekEncodedValue().Length; 152ReadOnlySpan<byte> encodedRequestInfo = pkcs10Asn.PeekEncodedValue();
System\Security\Cryptography\X509Certificates\CertificateRevocationListBuilder.Load.cs (1)
95payloadLength = reader.PeekEncodedValue().Length;
System\Security\Cryptography\X509Certificates\PublicKey.cs (1)
308read = reader.PeekEncodedValue().Length;
System\Security\Cryptography\X509Certificates\X500DistinguishedName.cs (1)
140ReadOnlySpan<byte> encodedValue = sequence.PeekEncodedValue();
System\Security\Cryptography\X509Certificates\X509AuthorityKeyIdentifierExtension.cs (1)
540byte[] rawIssuer = aki.PeekEncodedValue().ToArray();