Repository: cxf Updated Branches: refs/heads/master 77c9f1572 -> 1bbb368a2
Fixing a typo in the abstract jose helper Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/2b5c8474 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/2b5c8474 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/2b5c8474 Branch: refs/heads/master Commit: 2b5c8474be1dc98a816c23ab5dc79c918f0e5061 Parents: 11e710d Author: Sergey Beryozkin <[email protected]> Authored: Thu Aug 6 22:59:55 2015 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Thu Aug 6 22:59:55 2015 +0100 ---------------------------------------------------------------------- .../rs/security/oauth2/provider/AbstractOAuthJoseJwtProducer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/2b5c8474/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/AbstractOAuthJoseJwtProducer.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/AbstractOAuthJoseJwtProducer.java b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/AbstractOAuthJoseJwtProducer.java index ae27021..aa85a53 100644 --- a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/AbstractOAuthJoseJwtProducer.java +++ b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/AbstractOAuthJoseJwtProducer.java @@ -39,7 +39,7 @@ public abstract class AbstractOAuthJoseJwtProducer extends AbstractJoseJwtProduc private boolean encryptWithClientSecret; private boolean signWithClientSecret; - protected JwsSignatureProvider getInitializedSigProvider(Client c, boolean required) { + protected JwsSignatureProvider getInitializedSignatureProvider(Client c, boolean required) { if (signWithClientSecret) { byte[] hmac = CryptoUtils.decodeSequence(c.getClientSecret()); return JwsUtils.getHmacSignatureProvider(hmac, SignatureAlgorithm.HS256);
