Ejemplo n.º 1
0
        /// <summary>
        /// Returns a DER-encoded PKCS#10 Certificate Signing Request for the given RSA parametes
        /// and the given hash algorithm.
        /// </summary>
        public static byte[] GenerateCsr(this RsaTool tool, IEnumerable <string> dnsNames,
                                         RSA rsa, HashAlgorithmName?hashAlgor = null)
        {
            if (hashAlgor == null)
            {
                hashAlgor = HashAlgorithmName.SHA256;
            }

            string firstName  = null;
            var    sanBuilder = new SubjectAlternativeNameBuilder();

            foreach (var n in dnsNames)
            {
                sanBuilder.AddDnsName(n);
                if (firstName == null)
                {
                    firstName = n;
                }
            }
            if (firstName == null)
            {
                throw new ArgumentException("Must specify at least one name");
            }

            var dn  = new X500DistinguishedName($"CN={firstName}");
            var csr = new CertificateRequest(dn,
                                             rsa, hashAlgor.Value, RSASignaturePadding.Pkcs1);

            csr.CertificateExtensions.Add(sanBuilder.Build());

            return(csr.CreateSigningRequest());
        }
Ejemplo n.º 2
0
 public static RSA GenerateAlgorithm(this RsaTool tool, int keyBitLength)
 {
     return(RSA.Create(keyBitLength));
 }
Ejemplo n.º 3
0
        public static string GenerateKeys(this RsaTool tool, int keyBitLength)
        {
            var rsa = GenerateAlgorithm(tool, keyBitLength);

            return(tool.GenerateKeys(rsa));
        }