saml2.0(主要是idp端开发)

附上大佬文章:
https://www.jianshu.com/p/d041935641b4
https://www.jianshu.com/p/6f61fa7be0b6
https://www.jianshu.com/p/6c72408fa480
看了大佬的文章和demo基本能搞出来一套本地可用的saml2.0。
在我开发过程中主要是我们作为IDP,做统一登录后发送给第三方SP做免登录。
主要就几个过程:
1.SP通过发送SAML AuthnRequest到IDP,来请求鉴别用户身份
2.IDP验证身份,然后通过SAML产物响应(SAML Artifact Response)发送回SP
其中几个点:
1.记得初始化SAML,否则会出现NPE
2.如果有需要POST请求,可通过简单form表单自动提交

<html>
<body>
<form method="post" action="${url}" id="myForm">
    <input type="hidden" name="SAMLResponse" value="${responseValue}"/>
    <input type="hidden" name="RelayState" value="${xxx}"/>
    <input type="submit" value="Submit SAML2 Login Response"/></form>
</body>
</html>
<script type="text/javascript">
    window.onload= function(){
        document.getElementById('myForm').submit();
    }
</script>

3.responseValue是response的base64加密
4.opensaml 3 默认加密算法是sha256,如果需要sha1可能需要降低到opensaml 2
5.opensaml 3 采用的是分开打包maven的方式,需要引入很多个模块,参考大佬文章,opensaml 2 是整体maven直接引入即可。例如:

<!-- opensaml start -->
            <dependency>
                <groupId>org.opensaml</groupId>
                <artifactId>opensaml</artifactId>
                <version>2.6.4</version>
            </dependency>
            <dependency>
                <groupId>ch.qos.logback</groupId>
                <artifactId>logback-core</artifactId>
                <version>1.1.7</version>
            </dependency>
            <dependency>
                <groupId>ch.qos.logback</groupId>
                <artifactId>logback-classic</artifactId>
                <version>1.1.7</version>
            </dependency>
            <dependency>
                <groupId>commons-logging</groupId>
                <artifactId>commons-logging</artifactId>
                <version>1.2</version>
            </dependency>
            <dependency>
                <groupId>org.opensaml</groupId>
                <artifactId>xmltooling</artifactId>
                <version>1.4.4</version>
            </dependency>
            <!-- opensaml end -->

6.断言可以对assertion做,也可以对整个response做签名。根据需要自选。
这个签名主要是idp端用证书私钥做签名,sp端用公钥做验签。
我采用的是pfx的方式,把文件流读入,然后获取私钥,公钥。做签名

public class CertificateUtils {

    private static final Logger LOGGER = LoggerFactory.getLogger(CertificateUtils.class);

    private static final String PFX_CERT_FILE_SUFFIX = ".pfx";

    public static X509CertificateWrapper getCertByFile(String fileName, String pfxOpenPwd) {
        if (isPfxCertFileName(fileName)) {
            return getPfxCert(fileName, pfxOpenPwd);
        } else {
            LOGGER.error("get pfx certificate info failed");
            throw new Exception(xxx);
        }
    }

    private static boolean isPfxCertFileName(String fileName) {
        return fileName.endsWith(PFX_CERT_FILE_SUFFIX);
    }

    private static X509CertificateWrapper getPfxCert(String fileName, String pfxOpenPwd){
        Assert.hasText(pfxOpenPwd, "pfx file open pwd missing");
        InputStream fileInputStream = getResourceAsStreamByFileName(fileName);
        return getPfxCertificate(fileInputStream, pfxOpenPwd);
    }

   //fileName 相对路径 比如resource/cert/xxx.pfx     fileName="cert/xxx.pfx"
    private static InputStream getResourceAsStreamByFileName(String fileName) {
        return Thread.currentThread().getContextClassLoader().getResourceAsStream(fileName);
    }

    private static char[] getFileOpenPwdChars(String fileOpenPwd) {
        if (StringUtils.isBlank(fileOpenPwd) || StringUtils.isBlank(StringUtils.trim(fileOpenPwd))) {
            return null;
        }
        return fileOpenPwd.toCharArray();
    }

    private static X509CertificateWrapper getPfxCertificate(InputStream inputStream, String pfxOpenPwd){
        X509CertificateWrapper x509CertificateWrapper = new X509CertificateWrapper(null, null) ;
        try {
            KeyStore ks = KeyStore.getInstance("PKCS12");
            char[] nPassword = getFileOpenPwdChars(pfxOpenPwd);
            ks.load(inputStream, nPassword);
            String keyAlias = getKeyAlias(ks);
            PrivateKey privateKey = (PrivateKey) ks.getKey(keyAlias, nPassword);
            X509Certificate cert = (X509Certificate) ks.getCertificate(keyAlias);
            String certStr = convertCertObj2certStr(cert);
            x509CertificateWrapper.setX509Certificate(cert);
            x509CertificateWrapper.setContent(certStr);
            x509CertificateWrapper.setPrivateKey(privateKey);
        } catch (KeyStoreException e) {
            throw new RuntimeException("Error occurred when read the pfx file stream", e);
        } catch (IOException e) {
            throw new RuntimeException("Error occurred when read the pfx file stream", e);
        } catch (NoSuchAlgorithmException e) {
            throw new RuntimeException("Error occurred when read the pfx file stream", e);
        } catch (CertificateException e) {
            throw new RuntimeException("Error occurred when read the pfx file stream", e);
        } catch (UnrecoverableKeyException e) {
            throw new RuntimeException("Error occurred when read the pfx file stream", e);
        } finally {
            try {
                inputStream.close();
            } catch (IOException e) {
                throw new RuntimeException("Error occurred when read the pfx file stream", e);
            }
        }
        return x509CertificateWrapper;
    }

    private static String getKeyAlias(KeyStore ks) throws KeyStoreException {
        Enumeration<String> aliases = ks.aliases();
        // we are read just one certificate.
        if (aliases.hasMoreElements()) {
            return aliases.nextElement();
        }
        return null;
    }

    public static String convertCertObj2certStr(Certificate certificate) {
        if (certificate == null) {
            return "";
        }
        try {
            String certStr = Base64.getEncoder().encodeToString(certificate.getEncoded());
            return certStr;
        } catch (CertificateEncodingException e) {
            LOGGER.error("convertCertObj2certStr error, CertificateEncodingException {}", e);
            return "";
        }
    }
public class X509CertificateWrapper {
    private X509Certificate x509Certificate;

    private PrivateKey privateKey;

    private String content;

    public X509CertificateWrapper(X509Certificate x509Certificate, String content) {
        this.content = content;
        this.x509Certificate = x509Certificate;
    }

    public X509Certificate getX509Certificate() {
        return x509Certificate;
    }

    public void setX509Certificate(X509Certificate x509Certificate) {
        this.x509Certificate = x509Certificate;
    }

    public String getContent() {
        return content;
    }

    public PrivateKey getPrivateKey() {
        return privateKey;
    }

    public void setPrivateKey(PrivateKey privateKey) {
        this.privateKey = privateKey;
    }

    public void setContent(String content) {
        this.content = content;
    }
}

demo两个:
opensaml 3.2.0
https://github.com/sunrongxin7666/OpenSAML-ref-project-demo-v3

opensaml 2.2.3
https://github.com/xiaosiyuan/saml

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,802评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,109评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,683评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,458评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,452评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,505评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,901评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,550评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,763评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,556评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,629评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,330评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,898评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,897评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,140评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,807评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,339评论 2 342