>  기사  >  백엔드 개발  >  PHP를 사용하여 WS-Security 보호 웹 서비스에 대한 요청을 인증하는 방법은 무엇입니까?

PHP를 사용하여 WS-Security 보호 웹 서비스에 대한 요청을 인증하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-08 16:23:02540검색

How to Authenticate Requests to a WS-Security Protected Web Service Using PHP?

PHP를 사용하여 WS-Security로 보호되는 웹 서비스에 연결

비밀번호 보호가 필요하고 HTTPS를 사용하는 웹 서비스에 연결하려고 하면 인증 문제가 발생할 수 있습니다. . 이는 서비스가 정의되자마자, 잠재적으로 인증이 설정되기 전에 PHP 스크립트가 요청을 시작하기 때문입니다.

인증 설정

이 문제를 해결하려면 SoapHeader를 확장해야 합니다. Wsse 호환 인증을 생성하는 클래스입니다. 다음 코드는 이를 보여줍니다.

class WsseAuthHeader extends SoapHeader {

    private $wss_ns = 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd';

    function __construct($user, $pass, $ns = null) {
        if ($ns) {
            $this->wss_ns = $ns;
        }

        $auth = new stdClass();
        $auth->Username = new SoapVar($user, XSD_STRING, NULL, $this->wss_ns, NULL, $this->wss_ns);
        $auth->Password = new SoapVar($pass, XSD_STRING, NULL, $this->wss_ns, NULL, $this->wss_ns);

        $username_token = new stdClass();
        $username_token->UsernameToken = new SoapVar($auth, SOAP_ENC_OBJECT, NULL, $this->wss_ns, 'UsernameToken', $this->wss_ns);

        $security_sv = new SoapVar(
            new SoapVar($username_token, SOAP_ENC_OBJECT, NULL, $this->wss_ns, 'UsernameToken', $this->wss_ns),
            SOAP_ENC_OBJECT, NULL, $this->wss_ns, 'Security', $this->wss_ns);
        parent::__construct($this->wss_ns, 'Security', $security_sv, true);
    }
}

요청 인증

SoapHeader를 확장한 후에는 이를 사용하여 요청을 인증할 수 있습니다.

$wsse_header = new WsseAuthHeader($username, $password);
$x = new SoapClient('{...}', array("trace" => 1, "exception" => 0));
$x->__setSoapHeaders(array($wsse_header));

사용 Nonce 및 Timestamp

Nonce 및 Timestamp와 함께 WS-Security를 ​​사용해야 하는 경우 타임스탬프를 사용하면 Peter가 제공하는 업데이트된 버전을 사용할 수 있습니다.

class WsseAuthHeader extends SoapHeader
{
    private $wss_ns = 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd';
    private $wsu_ns = 'http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd';

    function __construct($user, $pass)
    {
        $created    = gmdate('Y-m-d\TH:i:s\Z');
        $nonce      = mt_rand();
        $passdigest = base64_encode(pack('H*', sha1(pack('H*', $nonce) . pack('a*', $created) . pack('a*', $pass))));

        $auth           = new stdClass();
        $auth->Username = new SoapVar($user, XSD_STRING, NULL, $this->wss_ns, NULL, $this->wss_ns);
        $auth->Password = new SoapVar($pass, XSD_STRING, NULL, $this->wss_ns, NULL, $this->wss_ns);
        $auth->Nonce    = new SoapVar($passdigest, XSD_STRING, NULL, $this->wss_ns, NULL, $this->wss_ns);
        $auth->Created  = new SoapVar($created, XSD_STRING, NULL, $this->wss_ns, NULL, $this->wsu_ns);

        $username_token                = new stdClass();
        $username_token->UsernameToken = new SoapVar($auth, SOAP_ENC_OBJECT, NULL, $this->wss_ns, 'UsernameToken', $this->wss_ns);

        $security_sv = new SoapVar(
            new SoapVar($username_token, SOAP_ENC_OBJECT, NULL, $this->wss_ns, 'UsernameToken', $this->wss_ns),
            SOAP_ENC_OBJECT, NULL, $this->wss_ns, 'Security', $this->wss_ns);
        parent::__construct($this->wss_ns, 'Security', $security_sv, true);
    }
}

이러한 기술을 활용하면 PHP를 사용하여 WS-Security로 보호되는 웹 서비스에 성공적으로 연결하고 요청을 인증할 수 있습니다.

위 내용은 PHP를 사용하여 WS-Security 보호 웹 서비스에 대한 요청을 인증하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.