当前位置: 首页>>代码示例>>Java>>正文


Java WSPasswordCallback.USERNAME_TOKEN_UNKNOWN属性代码示例

本文整理汇总了Java中org.apache.ws.security.WSPasswordCallback.USERNAME_TOKEN_UNKNOWN属性的典型用法代码示例。如果您正苦于以下问题:Java WSPasswordCallback.USERNAME_TOKEN_UNKNOWN属性的具体用法?Java WSPasswordCallback.USERNAME_TOKEN_UNKNOWN怎么用?Java WSPasswordCallback.USERNAME_TOKEN_UNKNOWN使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.apache.ws.security.WSPasswordCallback的用法示例。


在下文中一共展示了WSPasswordCallback.USERNAME_TOKEN_UNKNOWN属性的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: handle

public void handle(Callback[] callbacks) throws IOException,
        UnsupportedCallbackException {
    for (int i = 0; i < callbacks.length; i++) {

        //When the server side need to authenticate the user
        WSPasswordCallback pwcb = (WSPasswordCallback)callbacks[i];
        if (pwcb.getUsage() == WSPasswordCallback.USERNAME_TOKEN_UNKNOWN) {
            if(pwcb.getIdentifer().equals("alice") && pwcb.getPassword().equals("bobPW")) {
                return;
            } else {
                throw new UnsupportedCallbackException(callbacks[i], "check failed");
            }
        }

        //When the client requests for the password to be added in to the
        //UT element
        pwcb.setPassword("bobPW");
    }
}
 
开发者ID:wso2,项目名称:product-ei,代码行数:19,代码来源:PWCBHandler.java

示例2: handle

public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException {
    for (int i = 0; i < callbacks.length; i++) {
        if (callbacks[i] instanceof WSPasswordCallback) {
            WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];
            if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN_UNKNOWN
                && "bob".equals(pc.getIdentifier())) {
                if (WSSecurityEngine.getInstance().getWssConfig().getPasswordsAreEncoded()) {
                    // "jux7xGGAjguKKHg9C+waOiLrCCE=" is the Base64 encoded SHA-1 hash of "security".
                    pc.setPassword("jux7xGGAjguKKHg9C+waOiLrCCE=");
                } else {
                    pc.setPassword("security");
                }
            } else {
                throw new IOException("Authentication failed");
            }
        } else {
            throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
        }
    }
}
 
开发者ID:wso2,项目名称:wso2-wss4j,代码行数:21,代码来源:TestWSSecurityUTDK.java

示例3: handle

public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException {
    for (int i = 0; i < callbacks.length; i++) {
        if (callbacks[i] instanceof WSPasswordCallback) {
            WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];
            assertEquals(pc.getPasswordType(), WSConstants.PASSWORD_TEXT);
            if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN_UNKNOWN) {
                if (!"wernerd".equals(pc.getIdentifier())
                      && !"verySecret".equals(pc.getPassword())) {
                    throw new IOException("Authentication failed");
                }
            } else {
                throw new IOException("Authentication failed");
            }
        } else {
            throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
        }
    }
}
 
开发者ID:wso2,项目名称:wso2-wss4j,代码行数:19,代码来源:TestWSSecurityWSS199.java

示例4: handle

public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException {
    for (int i = 0; i < callbacks.length; i++) {
        if (callbacks[i] instanceof WSPasswordCallback) {
            WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];
            if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN_UNKNOWN
                && "bob".equals(pc.getIdentifier())) {
                pc.setPassword("security");
            } else if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN
                && "bob".equals(pc.getIdentifier())) {
                pc.setPassword("security");
            } else {
                throw new IOException("Authentication failed");
            }
        } else {
            throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
        }
    }
}
 
开发者ID:wso2,项目名称:wso2-wss4j,代码行数:19,代码来源:TestWSSecurityUTSignature.java

示例5: handle

public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException {
    for (int i = 0; i < callbacks.length; i++) {
        if (callbacks[i] instanceof WSPasswordCallback) {
            WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];
            boolean passwordsAreEncoded = WSSecurityEngine.getInstance().getWssConfig().getPasswordsAreEncoded();
            if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN
                && "wernerd".equals(pc.getIdentifier())) {
                if (passwordsAreEncoded) {
                    // "hGqoUreBgahTJblQ3DbJIkE6uNs=" is the Base64 encoded SHA-1 hash of "verySecret".
                    pc.setPassword("hGqoUreBgahTJblQ3DbJIkE6uNs=");
                } else {
                    pc.setPassword("verySecret");
                }
            } else if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN
                && "emptyuser".equals(pc.getIdentifier())) {
                pc.setPassword("");
            }  
            else if (
                pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN_UNKNOWN
            ) {
                if ("wernerd".equals(pc.getIdentifier())
                    && "verySecret".equals(pc.getPassword())) {
                    return;
                } else if ("customUser".equals(pc.getIdentifier())) {
                    return;
                } else if ("wernerd".equals(pc.getIdentifier())
                    && "".equals(pc.getPassword())) {
                    return;
                } else {
                    throw new IOException("Authentication failed");
                }
            }
        } else {
            throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
        }
    }
}
 
开发者ID:wso2,项目名称:wso2-wss4j,代码行数:38,代码来源:TestWSSecurityNew5.java

示例6: handle

/**
 * Method handle
 * 
 * @param callbacks 
 * @throws java.io.IOException                  
 * @throws javax.security.auth.callback.UnsupportedCallbackException 
 */
public void handle(Callback[] callbacks)
        throws IOException, UnsupportedCallbackException {

    for (int i = 0; i < callbacks.length; i++) {
        if (callbacks[i] instanceof WSPasswordCallback) {
            WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];

            /*
             * This usage type is used only in case we received a
             * username token with a password of type PasswordText or
             * an unknown password type.
             * 
             * This case the WSPasswordCallback object contains the
             * identifier (aka username), the password we received, and
             * the password type string to identify the type.
             * 
             * Here we perform only a very simple check.
             */

            if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN_UNKNOWN) {
                if(pc.getIdentifier().equals("Ron") && pc.getPassword().equals("noR")) {
                    return;
                }
                if (pc.getPassword().equals("sirhC")) {
                    return;
                }
                throw new UnsupportedCallbackException(callbacks[i],
                "check failed");
            }

            /*
             * here call a function/method to lookup the password for
             * the given identifier (e.g. a user name or keystore alias)
             * e.g.: pc.setPassword(passStore.getPassword(pc.getIdentfifier))
             * for Testing we supply a fixed name here.
             */

            if (pc.getUsage() == WSPasswordCallback.KEY_NAME) {
                pc.setKey(key);
            } else if(pc.getIdentifier().equals("alice")) {
                pc.setPassword("password");
            } else if(pc.getIdentifier().equals("bob")) {
                pc.setPassword("password");
            } else if(pc.getIdentifier().equals("Ron")) {
                pc.setPassword("noR");
            } else {
                pc.setPassword("sirhC");
            }
        } else {
            throw new UnsupportedCallbackException(callbacks[i],
                    "Unrecognized Callback");
        }
    }
}
 
开发者ID:wso2,项目名称:wso2-wss4j,代码行数:61,代码来源:PWCallback1.java


注:本文中的org.apache.ws.security.WSPasswordCallback.USERNAME_TOKEN_UNKNOWN属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。