Skip to content

Commit 612cbbd

Browse files
committed
Merge remote-tracking branch 'origin/fix-dpop' into fix-dpop
2 parents ad8760f + 86d603d commit 612cbbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/src/test/java/io/opentdf/platform/sdk/TokenSourceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void getDPoPProof() throws URISyntaxException, JOSEException, MalformedURLExcept
2323
var fakeToken = new BearerAccessToken("this is a fake token");
2424
var keypair = CryptoUtils.generateRSAKeypair();
2525
var dpopKey = new RSAKey.Builder((RSAPublicKey) keypair.getPublic()).privateKey(keypair.getPrivate()).build();
26-
var dpopProofFactory = new DefaultDPoPProofFactory(dpopKey, JWSAlgorithm.RS256) ;
26+
var dpopProofFactory = new DefaultDPoPProofFactory(dpopKey, JWSAlgorithm.RS256);
2727

2828
var dpop = TokenSource.getDPoPProof(new URI("http://example.org/path/to/the/resource").toURL(), "POST", dpopProofFactory, fakeToken);
2929

0 commit comments

Comments
 (0)