- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.opensaml.xml.schema.XSBase64Binary
类的一些代码示例,展示了XSBase64Binary
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSBase64Binary
类的具体详情如下:
包路径:org.opensaml.xml.schema.XSBase64Binary
类名称:XSBase64Binary
[英]XMLObject that represents an XML Schema base64Binary.
[中]表示基于二进制的XML模式的XMLObject。
代码示例来源:origin: cloudfoundry/uaa
value = ((XSURI) xmlObject).getValue();
} else if (xmlObject instanceof XSBase64Binary) {
value = ((XSBase64Binary) xmlObject).getValue();
代码示例来源:origin: org.opensaml/xmltooling
/** {@inheritDoc} */
protected void processElementContent(XMLObject xmlObject, String elementContent) {
XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;
if (elementContent != null) {
xsBase64Binary.setValue(elementContent.trim());
}
}
}
代码示例来源:origin: io.apigee.opensaml/xmltooling
/** {@inheritDoc} */
protected void processElementContent(XMLObject xmlObject, String elementContent) {
XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;
if (elementContent != null) {
xsBase64Binary.setValue(elementContent.trim());
}
}
}
代码示例来源:origin: be.fedict.eid-idp/eid-idp-common-saml2
@SuppressWarnings("unchecked")
private static Attribute getAttribute(String attributeName,
byte[] attributeValue) {
Attribute attribute = buildXMLObject(Attribute.class,
Attribute.DEFAULT_ELEMENT_NAME);
attribute.setName(attributeName);
XMLObjectBuilder<XSBase64Binary> builder = Configuration
.getBuilderFactory().getBuilder(XSBase64Binary.TYPE_NAME);
XSBase64Binary xmlAttributeValue = builder.buildObject(
AttributeValue.DEFAULT_ELEMENT_NAME, XSBase64Binary.TYPE_NAME);
xmlAttributeValue.setValue(Base64.encodeBytes(attributeValue));
attribute.getAttributeValues().add(xmlAttributeValue);
return attribute;
}
代码示例来源:origin: org.opensaml/xmltooling
/** {@inheritDoc} */
protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;
XMLHelper.appendTextContent(domElement, xsBase64Binary.getValue());
}
}
代码示例来源:origin: be.e_contract.sts/sts-client-cxf
private void addAttribute(AttributeStatement attributeStatement,
Attributes attribute, byte[] value) {
if (null == value) {
return;
}
XMLObjectBuilder<XSBase64Binary> builder = Configuration
.getBuilderFactory().getBuilder(XSBase64Binary.TYPE_NAME);
Attribute samlAttribute = buildXMLObject(Attribute.class,
Attribute.DEFAULT_ELEMENT_NAME);
samlAttribute.setName(attribute.getName());
XSBase64Binary attributeValue = builder.buildObject(
AttributeValue.DEFAULT_ELEMENT_NAME, XSBase64Binary.TYPE_NAME);
attributeValue.setValue(Base64.encode(value));
samlAttribute.getAttributeValues().add(attributeValue);
attributeStatement.getAttributes().add(samlAttribute);
}
代码示例来源:origin: io.apigee.opensaml/xmltooling
/** {@inheritDoc} */
protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;
XMLHelper.appendTextContent(domElement, xsBase64Binary.getValue());
}
}
代码示例来源:origin: org.wso2.carbon.identity/org.wso2.carbon.identity.provider
XSBase64Binary ppidValue = ppidValueBuilder.buildObject(
AttributeValue.DEFAULT_ELEMENT_NAME, XSBase64Binary.TYPE_NAME);
ppidValue.setValue(claim.getValue());
attribute.getAttributeValues().add(ppidValue);
} else {
代码示例来源:origin: org.opensaml/xmltooling
/**
* Validates the content of the XSBase64Binary object.
*
* @param xmlObject the object to evaluate
* @throws ValidationException thrown if the content of the Base64Binary object is invalid
*/
protected void validateBase64BinaryContent(T xmlObject) throws ValidationException {
if (! isAllowEmptyContent()) {
if (DatatypeHelper.isEmpty(xmlObject.getValue())) {
throw new ValidationException("Base64Binary content may not be empty");
}
}
}
代码示例来源:origin: org.wso2.carbon.identity.inbound.auth.openid/org.wso2.carbon.identity.provider
XSBase64Binary ppidValue = ppidValueBuilder.buildObject(
AttributeValue.DEFAULT_ELEMENT_NAME, XSBase64Binary.TYPE_NAME);
ppidValue.setValue(claim.getValue());
attribute.getAttributeValues().add(ppidValue);
} else {
代码示例来源:origin: io.apigee.opensaml/xmltooling
/**
* Validates the content of the XSBase64Binary object.
*
* @param xmlObject the object to evaluate
* @throws ValidationException thrown if the content of the Base64Binary object is invalid
*/
protected void validateBase64BinaryContent(T xmlObject) throws ValidationException {
if (! isAllowEmptyContent()) {
if (DatatypeHelper.isEmpty(xmlObject.getValue())) {
throw new ValidationException("Base64Binary content may not be empty");
}
}
}
代码示例来源:origin: be.fedict.eid-idp/eid-idp-common-saml2
private static void processAttribute(Attribute attribute,
Map<String, Object> attributeMap)
throws AssertionValidationException {
String attributeName = attribute.getName();
if (attribute.getAttributeValues().get(0) instanceof XSString) {
XSString attributeValue = (XSString) attribute.getAttributeValues()
.get(0);
attributeMap.put(attributeName, attributeValue.getValue());
} else if (attribute.getAttributeValues().get(0) instanceof XSInteger) {
XSInteger attributeValue = (XSInteger) attribute
.getAttributeValues().get(0);
attributeMap.put(attributeName, attributeValue.getValue());
} else if (attribute.getAttributeValues().get(0) instanceof XSDateTime) {
XSDateTime attributeValue = (XSDateTime) attribute
.getAttributeValues().get(0);
attributeMap.put(attributeName, attributeValue.getValue()
.toDateTime(ISOChronology.getInstanceUTC()));
} else if (attribute.getAttributeValues().get(0) instanceof XSBase64Binary) {
XSBase64Binary attributeValue = (XSBase64Binary) attribute
.getAttributeValues().get(0);
attributeMap.put(attributeName,
Base64.decode(attributeValue.getValue()));
} else {
throw new AssertionValidationException("Unsupported attribute of "
+ "type: "
+ attribute.getAttributeValues().get(0).getClass()
.getName());
}
}
代码示例来源:origin: edu.internet2.middleware/shibboleth-common
toMatch = ((XSBase64Binary) xmlObj).getValue();
} else if (xmlObj instanceof XSAny) {
final XSAny wc = (XSAny) xmlObj;
我们可以设置签名算法如下: signature.setSignatureAlgorithm("http://www.w3.org/2001/04/xmldsig-more#rsa-sha256");
我正在使用 Spring SAML ,来自 国内流离失所者 响应 我接收颁发者作为属性 ID,所以我想在 spring saml 中接收后更改响应,所以我重写了方法 unmarshall,它将解析消息
在我们的应用程序中,我们正在尝试升级到 Spring boot 2,我们正在使用 spring-security-saml2-core:1.0.4.RELEASE,在运行应用程序时我们遇到以下异常。看
我被分配了在我的公司和客户之间实现 SAML 的任务。我正在考虑使用 OpenSAML,但我正在努力设置 Maven 项目。 我添加依赖项: org.opensaml opensaml 2.5.1
我尝试使用 Open Saml 2 从 Idp 读取元数据。当我尝试解码元数据时,openSaml 仅显示属性 getUnknownAtrributes() 的 getter。看起来我遗漏了一些要点,
我正在尝试对使用 OpenSAML 从身份提供商获取的 SAML2 响应进行签名验证。我正在尝试读取本地文件系统的响应。 这是我的代码: DefaultBootstrap.bootstrap();
我正在尝试创建 SAML 响应。构成断言的属性之一称为地址,属性值需要是在 XSD 中定义的自定义类型。如何将自定义属性值类型添加到响应中? 最佳答案 如果你的属性值 XML 是 String 形式:
我在 opensaml2.6 上运行这段代码 Element metadataRoot = document.getDocumentElement(); // Unmarshall Unmarshal
本文整理了Java中org.opensaml.xml.XMLConfigurator类的一些代码示例,展示了XMLConfigurator类的具体用法。这些代码示例主要来源于Github/Stacko
我正在构建一个 SAML 2.0 AuthNRequest。 我设法使用 OpenSaml 添加了签名信息,但我找不到添加 的方法和 使用图书馆的值(value)。 这是代码: public
我和我的团队正在使用 opensaml 生成 SAML token 。我们已经设法完成此设置,但另一个团队的成员告诉我们,如果我们能够对生成的 token 进行一些配置,他们将不胜感激。 他们希望我们
我已经使用 Opensaml 解密了一个 SAML 断言。尽管解密没有错误,但当我尝试验证该断言的签名时,它失败并出现错误 "org.apache.xml.security.signature.Mis
您好,我目前正在将应用程序移植到 opensaml3 并遇到以下问题: InitializationService.initialize(); ... Unmarshaller unmarshalle
我在 Tomcat 8 中运行一个使用 OpenSAML 的网络应用程序。我已经在 Tomcat 中认可了 Xerces,我检查了认可的目录路径是否设置正确,看起来一切正常: [ajp-apr-800
我正在尝试通过签署响应而不是声明来实现 SAML 2.0。我有 3 个现有供应商在断言级别接受我的签名,但是一个新供应商在协议(protocol)/响应级别请求它。我已经用谷歌搜索和调试了大约 8 个
我目前正在设置 SAML IDP。起初,我认为 spring-security-saml 会帮助我,但我发现它只有助于设置 SAML 协议(protocol)的 SP 端。 所以我想:走吧,让我们使用
我正在为充当服务提供商的应用程序使用 opensaml。到目前为止,我一直在手动创建 SP 元数据。 Java 中是否有示例显示如何以编程方式生成服务提供者元数据 ? 最佳答案 EntityDescr
好吧,这是另一个“我不知道从哪里开始”的问题,所以希望答案很简单。但是,我真的不知道要搜索什么,到目前为止我的尝试没有多大用处。 我想从一个(当前在磁盘上的)文件中读取私钥。最终 key 将驻留在数据
本文整理了Java中org.opensaml.xml.schema.XSBooleanValue类的一些代码示例,展示了XSBooleanValue类的具体用法。这些代码示例主要来源于Github/S
本文整理了Java中org.opensaml.xml.schema.XSBase64Binary类的一些代码示例,展示了XSBase64Binary类的具体用法。这些代码示例主要来源于Github/S
我是一名优秀的程序员,十分优秀!