Skip to content

Non-blocking HTTP messages signing proxy based on Spring Cloud Gateway (Netty + Spring WebFlux)

License

Notifications You must be signed in to change notification settings

sbabakin/http-signing-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTTP Signing Proxy Service

Non-blocking HTTP messages signing proxy based on Spring Cloud Gateway (Netty + Spring WebFlux)

Use Case

A third-party services requires Signing HTTP Messages (IETF specification).

But what if you don't want to (or simply can't) implement HTTP requests signing right in the code that originates a request? Then you can use HTTP signing proxy.

HTTP request --> Signing Proxy --> signed HTTP request

Implementation

The implementation we offer is based on Spring Cloud Gateway.

Benefits:

  • non-blocking API (Netty with Spring WebFlux)
  • Spring configuration features and Actuator endpoints (easy integration).

HTTP messages signing logic:

  • add HTTP header 'Date' (RFC-1123 format)
  • calculate message digest for POST and PUT requests and add HTTP header 'Digest'
  • sign 'Date', 'Digest' and company specific HTTP headers
  • add 'Signature' HTTP header

We use Tomitribe implementation for HTTP headers calculation.

Application configuration

In Kubernetes we can use following environment variables to configure the app

Env variable Description Sample Value
SIGNING_PROXY_GATEWAY_URI Third-party system gateway address https://system.org
SIGNING_PROXY_GATEWAY_PATH Third-party system gateway path /complex/api/
SIGNING_PROXY_CERT_FILE Certificate file content
SIGNING_PROXY_PRIVATE_KEY_FILE RSA Private Key content
SIGNING_PROXY_PRIVATE_KEY_PASS Key file password secret!
SIGNING_PROXY_PRIVATE_KEY_ID Key ID (part of a signature) ABC12345

Quick Start

You need a valid private RSA key to sign HTTP messages (see instructions below). For development and debug purposes, you can use Postman Echo service https://postman-echo.com.

Postman Echo as external system and test keys are configured in 'dev' profile.

mvn clean install
mvn spring-boot:run -Dspring-boot.run.profiles=dev

Default configuration:

Use Postman or cURL for testing

curl --location --request POST 'localhost:8081/api/post' \
--header 'Content-Type: application/json' \
--data-raw '{
    "key1": "value1",
    "key2": "value2"
}'

Generate Keys

Generate an RSA private key, of size 2048, and output it to a file named key.pem:

openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 3650

About

Non-blocking HTTP messages signing proxy based on Spring Cloud Gateway (Netty + Spring WebFlux)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages