17 references to WriteKeyParameterInteger
System.Security.Cryptography (17)
src\libraries\Common\src\System\Security\Cryptography\AsymmetricAlgorithmHelpers.Der.cs (2)
40writer.WriteKeyParameterInteger(input.Slice(0, halfLength)); 41writer.WriteKeyParameterInteger(input.Slice(halfLength, halfLength));
src\libraries\Common\src\System\Security\Cryptography\DSAKeyFormatHelper.cs (5)
263writer.WriteKeyParameterInteger(dsaParameters.P); 264writer.WriteKeyParameterInteger(dsaParameters.Q); 265writer.WriteKeyParameterInteger(dsaParameters.G); 275inner.WriteKeyParameterInteger(component); 282writer.WriteKeyParameterInteger(component);
src\libraries\Common\src\System\Security\Cryptography\RSAKeyFormatHelper.Pkcs1.cs (10)
129writer.WriteKeyParameterInteger(rsaParameters.Modulus); 130writer.WriteKeyParameterInteger(rsaParameters.Exponent); 159writer.WriteKeyParameterInteger(rsaParameters.Modulus); 160writer.WriteKeyParameterInteger(rsaParameters.Exponent); 161writer.WriteKeyParameterInteger(rsaParameters.D); 162writer.WriteKeyParameterInteger(rsaParameters.P); 163writer.WriteKeyParameterInteger(rsaParameters.Q); 164writer.WriteKeyParameterInteger(rsaParameters.DP); 165writer.WriteKeyParameterInteger(rsaParameters.DQ); 166writer.WriteKeyParameterInteger(rsaParameters.InverseQ);