|
1 | 1 | using CyberSource.Base;
|
2 | 2 | using System;
|
3 | 3 | using System.Net;
|
| 4 | +using System.Security.Cryptography.X509Certificates; |
4 | 5 | using System.ServiceModel;
|
5 | 6 | using System.Xml.Serialization;
|
6 | 7 | using System.ServiceModel.Channels;
|
@@ -359,5 +360,38 @@ protected static CustomBinding getWCFCustomBinding(Configuration config)
|
359 | 360 | currentBinding.Elements.Add(httpsTransport);
|
360 | 361 | return currentBinding;
|
361 | 362 | }
|
| 363 | + |
| 364 | + /// <summary> |
| 365 | + /// Creates a new instance of X509Certificate2 |
| 366 | + /// </summary> |
| 367 | + /// <param name="config"> |
| 368 | + /// Configuration object containing the key content or file path |
| 369 | + /// </param> |
| 370 | + /// <returns>New instance of X509Certificate2</returns> |
| 371 | + protected static X509Certificate2 GetCertificate(Configuration config) |
| 372 | + { |
| 373 | + var flags = X509KeyStorageFlags.Exportable | X509KeyStorageFlags.PersistKeySet; |
| 374 | + return config.Key != null |
| 375 | + ? new X509Certificate2(config.Key, config.EffectivePassword, flags) |
| 376 | + : new X509Certificate2(config.EffectiveKeyFilePath, config.EffectivePassword, flags); |
| 377 | + } |
| 378 | + |
| 379 | + /// <summary> |
| 380 | + /// Creates a certificate collection with an imported certificate |
| 381 | + /// </summary> |
| 382 | + /// <param name="config"> |
| 383 | + /// Configuration object containing the key content or file path |
| 384 | + /// </param> |
| 385 | + /// <returns>New instance of X509Certificate2Collection with an imported certificate</returns> |
| 386 | + protected static X509Certificate2Collection GetCertificateCollection(Configuration config) |
| 387 | + { |
| 388 | + var collection = new X509Certificate2Collection(); |
| 389 | + var flags = X509KeyStorageFlags.Exportable | X509KeyStorageFlags.PersistKeySet; |
| 390 | + if (config.Key != null) |
| 391 | + collection.Import(config.Key, config.EffectivePassword, flags); |
| 392 | + else |
| 393 | + collection.Import(config.EffectiveKeyFilePath, config.EffectivePassword, flags); |
| 394 | + return collection; |
| 395 | + } |
362 | 396 | }
|
363 | 397 | }
|
0 commit comments