Library for Mastercard API compliant payload encryption/decryption.
Go 1.23+
Before using this library, you will need to set up a project in the Mastercard Developers Portal.
As part of this set up, you'll receive:
- A public request encryption certificate (aka Client Encryption Keys)
- A private response decryption key (aka Mastercard Encryption Keys)
import github.com/mastercard/client-encryption-goA Certificate can be created by calling the utils.LoadEncryptionCertificate function:
import "github.com/mastercard/client-encryption-go/utils"
//…
encryptionCertificate, err := utils.LoadEncryptionCertificate("<insert certificate file path>")
//…Supported certificate formats: PEM, DER.
A PrivateKey can be created from a PKCS#12 key store by calling utils.LoadDecryptionKey the following way:
import "github.com/mastercard/client-encryption-go/utils"
//…
decryptionKey, err := utils.LoadDecryptionKey(
"<insert PKCS#12 key file path>",
"<insert key password>")
//…A PrivateKey can be created from an unencrypted key file by calling utils.LoadUnencryptedDecryptionKey the following way:
import "github.com/mastercard/client-encryption-go/utils"
//…
decryptionKey, err := utils.LoadUnencryptedDecryptionKey("<insert key file path>")
//…Supported RSA key formats:
- PKCS#1 PEM (starts with "-----BEGIN RSA PRIVATE KEY-----")
- PKCS#8 PEM (starts with "-----BEGIN PRIVATE KEY-----")
- Binary DER-encoded PKCS#8
This library supports two types of encryption/decryption, both of which support field level and entire payload encryption: JWE encryption and what the library refers to as Field Level Encryption (Mastercard encryption), a scheme used by many services hosted on Mastercard Developers before the library added support for JWE.
- Introduction
- Configuring the JWE Encryption
- Performing JWE Encryption
- Performing JWE Decryption
- Encrypting Entire Payloads
- Decrypting Entire Payloads
This library uses JWE compact serialization for the encryption of sensitive data.
The core methods responsible for payload encryption and decryption are EncryptPayload and DecryptPayload in the encryption package.
EncryptPayloadusage:
import "github.com/mastercard/client-encryption-go/encryption"
// …
encryptedPayload := encryption.EncryptPayload(payload, *config)DecryptPayloadusage:
import "github.com/mastercard/client-encryption-go/encryption"
// …
decryptedPayload := encryption.DecryptPayload(payload, *config)Use the JWEConfigBuilder to create JWEConfig instances. Example:
import "github.com/mastercard/client-encryption-go/jwe"
// …
cb := jwe.NewJWEConfigBuilder()
config := cb.WithDecryptionKey(decryptionKey).
WithCertificate(encryptionCertificate).
WithEncryptionPath("$.path.to.foo", "$.path.to.encryptedFoo").
WithDecryptionPath("$.path.to.encryptedFoo.encryptedData", "$.path.to.foo").
WithEncryptedValueFieldName("encryptedData").
Build()Call encryption.EncryptPayload with a JSON request payload and a JWEConfig instance.
Example using the configuration above:
//…
payload := "{" +
" \"path\": {" +
" \"to\": {" +
" \"foo\": {" +
" \"sensitiveField1\": \"sensitiveValue1\"," +
" \"sensitiveField2\": \"sensitiveValue2\"" +
" }" +
" }" +
" }" +
"}"
encryptedPayload := encryption.EncryptPayload(payload, config)
//…Output:
{
"path": {
"to": {
"encryptedFoo": {
"encryptedData": "eyJraWQiOiI3NjFiMDAzYzFlYWRlM….Y+oPYKZEMTKyYcSIVEgtQw"
}
}
}
}Call encryption.DecryptPayload with a JSON response payload and a JWEConfig instance.
Example using the configuration above:
encryptedPayload := "{" +
" \"path\": {" +
" \"to\": {" +
" \"encryptedFoo\": {" +
" \"encryptedData\": \"eyJraWQiOiI3NjFiMDAzYzFlYWRlM….Y+oPYKZEMTKyYcSIVEgtQw\"" +
" }" +
" }" +
" }" +
"}"
decryptedPayload := encryption.DecryptPayload(payload, config)Output:
{
"path": {
"to": {
"foo": {
"sensitiveField1": "sensitiveValue1",
"sensitiveField2": "sensitiveValue2"
}
}
}
}Entire payloads can be encrypted using the "$" operator as encryption path:
import "github.com/mastercard/client-encryption-go/jwe"
// …
cb := jwe.NewJWEConfigBuilder()
config := cb.WithCertificate(encryptionCertificate).
WithEncryptionPath("$", "$").
// …
Build()Example:
payload := "{" +
" \"sensitiveField1\": \"sensitiveValue1\"," +
" \"sensitiveField2\": \"sensitiveValue2\"" +
"}"
encryptedPayload := encryption.EncryptPayload(payload, config)Output:
{
"encryptedData": "eyJraWQiOiI3NjFiMDAzYzFlYWRlM….Y+oPYKZEMTKyYcSIVEgtQw"
}Entire payloads can be decrypted using the "$" operator as decryption path:
import "github.com/mastercard/client-encryption-go/jwe"
// …
cb := jwe.NewJWEConfigBuilder()
config := cb.WithDecryptionKey(decryptionKey).
WithDecryptionPath("$", "$").
// …
Build()Example:
encryptedPayload := "{" +
" \"encryptedData\": \"eyJraWQiOiI3NjFiMDAzYzFlYWRlM….Y+oPYKZEMTKyYcSIVEgtQw\"" +
"}"
payload = encryption.DecryptPayload(encryptedPayload, config)Output:
{
"sensitiveField1": "sensitiveValue1",
"sensitiveField2": "sensitiveValue2"
}- Introduction
- Configuring the Mastercard Encryption
- Performing Mastercard Encryption
- Performing Mastercard Decryption
The core methods responsible for payload encryption and decryption are EncryptPayload and DecryptPayload in the mastercard_encryption package.
EncryptPayloadusage:
import "github.com/mastercard/client-encryption-go/mastercard_encryption"
// …
encryptedPayload := encryption.EncryptPayload(payload, *config)DecryptPayloadusage:
import "github.com/mastercard/client-encryption-go/mastercard_encryption"
// …
decryptedPayload := encryption.DecryptPayload(payload, *config)Use the FieldLevelEncryptionConfigBuilder to create FieldLevelEncryptionConfig instances. Example:
import "github.com/mastercard/client-encryption-go/field_level_encryption"
// …
cb := field_level_encryption.NewFieldLevelEncryptionConfigBuilder()
config, err := cb.WithDecryptionKey(decryptionKey).
WithEncryptionCertificate(encryptionCertificate).
WithEncryptionPath("$.path.to.foo", "$.path.to.encryptedFoo").
WithDecryptionPath("$.path.to.encryptedFoo.encryptedData", "$.path.to.foo").
WithEncryptedValueFieldName("encryptedData").
WithEncryptedKeyFieldName("encryptedKey").
WithIvFieldName("iv").
WithFieldValueEncoding(field_level_encryption.HEX).
WithOaepPaddingDigestAlgorithm(field_level_encryption.SHA256).
Build()Call mastercard_encryption.EncryptPayload with a JSON request payload and a FieldLevelEncryptionConfig instance.
Example using the configuration above:
//…
payload := "{" +
" \"path\": {" +
" \"to\": {" +
" \"foo\": {" +
" \"sensitiveField1\": \"sensitiveValue1\"," +
" \"sensitiveField2\": \"sensitiveValue2\"" +
" }" +
" }" +
" }" +
"}"
encryptedPayload := mastercard_encryption.EncryptPayload(payload, config)
//…Output:
{
"path": {
"to": {
"encryptedFoo": {
"iv": "7f1105fb0c684864a189fb3709ce3d28",
"encryptedKey": "67f467d1b653d98411a0c6d3c…ffd4c09dd42f713a51bff2b48f937c8",
"encryptedData": "b73aabd267517fc09ed72455c2…dffb5fa04bf6e6ce9ade1ff514ed6141",
"publicKeyFingerprint": "80810fc13a8319fcf0e2e…82cc3ce671176343cfe8160c2279",
"oaepHashingAlgorithm": "SHA256"
}
}
}
}Call mastercard_encryption.DecryptPayload with a JSON response payload and a FieldLevelEncryptionConfig instance.
Example using the configuration above:
response := "{" +
" \"path\": {" +
" \"to\": {" +
" \"encryptedFoo\": {" +
" \"iv\": \"e5d313c056c411170bf07ac82ede78c9\"," +
" \"encryptedKey": "e3a56746c0f9109d18b3a2652b76…f16d8afeff36b2479652f5c24ae7bd\"," +
" \"encryptedData\": \"809a09d78257af5379df0c454dcdf…353ed59fe72fd4a7735c69da4080e74f\"," +
" \"oaepHashingAlgorithm\": \"SHA256\"," +
" \"publicKeyFingerprint\": \"80810fc13a8319fcf0e2e…3ce671176343cfe8160c2279\"" +
" }" +
" }" +
" }" +
"}"
decryptedPayload := encryption.DecryptPayload(response, config)Output:
{
"path": {
"to": {
"foo": {
"sensitiveField1": "sensitiveValue1",
"sensitiveField2": "sensitiveValue2"
}
}
}
}OpenAPI Generator generates API client libraries from OpenAPI Specs. It provides generators and library templates for supporting multiple languages and frameworks.
The interceptor package will provide you with an interceptor you can use when configuring your API client.
This interceptor will take care of encrypting request and decrypting response payloads.
Client libraries can be generated using the following command:
openapi-generator-cli generate -i openapi-spec.yaml -g go -o out
See also:
The interceptor package supports 2 types of encryption.
- Encryption with OAuth1.0a authentication
- Encryption without authentication
Requests can be encrypted, with OAuth authentication as follows:
import (
oauth "github.com/mastercard/oauth1-signer-go"
"github.com/mastercard/client-encryption-go/interceptor"
)
cb := jwe.NewJWEConfigBuilder()
jweConfig := cb.WithDecryptionKey(decryptionKey).
WithCertificate(encryptionCertificate).
WithEncryptionPath("$", "$").
// …
Build()
configuration := openapi.NewConfiguration()
// Signer from the oauth-signer-go library used for OAuth1.0a
signer := oauth.Signer{ConsumerKey: "<consumer-key>", SigningKey: "<signer-key>"}
encryptionClient, _ := interceptor.GetHttpClient(*jweConfig, signer.Sign)
configuration.HTTPClient = encryptionClient
apiClient := openapi.NewAPIClient(configuration)
serviceApi := apiClient.ServiceApi
// …See also: