-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathGenerateKey.cs
39 lines (35 loc) · 1.24 KB
/
GenerateKey.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Globalization;
using CyberSource.Api;
using CyberSource.Model;
namespace Cybersource_rest_samples_dotnet.Samples.FlexMicroform
{
public class GenerateKey
{
public static FlexV1KeysPost200Response Run()
{
string encryptionType = "RsaOaep";
string targetOrigin = "https://www.test.com";
var requestObj = new GeneratePublicKeyRequest(
EncryptionType: encryptionType,
TargetOrigin: targetOrigin
);
string format = "JWT";
try
{
var configDictionary = new Configuration().GetConfiguration();
var clientConfig = new CyberSource.Client.Configuration(merchConfigDictObj: configDictionary);
var apiInstance = new KeyGenerationApi(clientConfig);
FlexV1KeysPost200Response result = apiInstance.GeneratePublicKey(format, requestObj);
Console.WriteLine(result);
return result;
}
catch (Exception e)
{
Console.WriteLine("Exception on calling the API : " + e.Message);
return null;
}
}
}
}