You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by co...@apache.org on 2017/08/30 15:50:37 UTC

syncope git commit: SYNCOPE-1198 - Adding docs

Repository: syncope
Updated Branches:
  refs/heads/master f15efd5b3 -> a0bccf169


SYNCOPE-1198 - Adding docs


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/a0bccf16
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/a0bccf16
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/a0bccf16

Branch: refs/heads/master
Commit: a0bccf169f8b65e4a8db0627574167756f96b94b
Parents: f15efd5
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Wed Aug 30 16:50:25 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Wed Aug 30 16:50:25 2017 +0100

----------------------------------------------------------------------
 .../systemadministration/keystore.adoc             | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/a0bccf16/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/keystore.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/keystore.adoc b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/keystore.adoc
index 7f7d03b..2648f0a 100644
--- a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/keystore.adoc
+++ b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/keystore.adoc
@@ -120,4 +120,21 @@ keystore.type=jks
 keystore.storepass=astorepass
 keystore.keypass=akyepass
 sp.cert.alias=saml2sp
+signature.algorithm=RSA_SHA1
 ....
+
+The `signature.algorithm` configuration parameter is the signature algorithm
+that is used with the key extracted from the keystore referenced in the
+parameters. The value for this parameter must match one of the values in the
+table below, each of which correspond to a shorthand for an associated
+algorithm as defined for use in the XML Signature specification. If 
+`signature.algorithm` is not specified, then either RSA_SHA1, EC_SHA1 or
+DSA_SHA1 is used depending on the type of key that is stored in the keystore.
+
+----
+RSA_SHA1, RSA_SHA224, RSA_SHA256, RSA_SHA384, RSA_SHA512,
+RSA_SHA1_MGF1, RSA_SHA224_MGF1, RSA_SHA256_MGF1, RSA_SHA384_MGF1, RSA_SHA512_MGF1,
+EC_SHA1, EC_SHA224, EC_SHA256, EC_SHA384, EC_SHA512,
+HMAC_SHA1, HMAC_SHA224, HMAC_SHA256, HMAC_SHA384, HMAC_SHA512,
+DSA_SHA1
+----