1

我正在尝试编写代码来解密 PHP 中的 JWE 令牌,因为现有库不支持我需要的算法(A128CBC+HS256,这是一个已弃用的算法)。

我的问题是我无法理解如何生成使用“连接密钥派生函数”的内容加密密钥(请参阅此处的第 5.8.1 节:http: //csrc.nist.gov/publications/nistpubs/800-56A/ SP800-56A_Revision1_Mar08-2007.pdf)。该功能的符号和解释超出了我的想象。

我正在根据JOSE JSON 网络算法草案 06获得我的价值观。

到目前为止,我的代码的相关部分如下所示:

// Derive CBC encryption & integrity keys
$shaSize = 256;
$encryptionKeySize = $shaSize / 2;
$integrityKeySize = $shaSize;

// Calculate the key derivation using Concat KDF for the content 
// encryption key
$encryptionSegments = [
    $masterKey,         // Z
    $encryptionKeySize, // keydatalen
    $this->packInt32sBe($encryptionKeySize) . utf8_encode('A128CBC+HS256'), // AlgorithmID
    $this->packInt32sBe(0), // PartyUInfo
    $this->packInt32sBe(0), // PartyUInfo
    'Encryption',           // SuppPubInfo
    $this->packInt32sBe(1), // SuppPrivInfo
];

// Calculate the SHA256 digest
$cek = hex2bin(hash('sha256', implode('', $encryptionSegments)));

可能相关的是,我获取大端整数的函数:

public function packInt32sBe($n)
{
    if (pack('L', 1) === pack('N', 1)) {
        return pack('l', $n);
    }

    return strrev(pack('l', $n));
}

此处未显示的唯一变量$masterKey是解密的内容主密钥。

4

2 回答 2

3

我确实最终解决了这个问题。不确定它是否会帮助其他人,但以防万一:

// Derive CBC encryption & integrity keys
$shaSize = 256;
$encryptionKeySize = $shaSize / 2;
$integrityKeySize = $shaSize;

// Calculate the key derivation using Concat KDF for the content 
// encryption key
$encryptionSegments = [
    $this->packInt32sBe(1), 
    $cmk,                              // Z
    $this->packInt32sBe($encryptionKeySize) . utf8_encode('A128CBC+HS256'), // AlgorithmID
    $this->packInt32sBe(0), // PartyUInfo
    $this->packInt32sBe(0), // PartyUInfo
    'Encryption',           // SuppPubInfo
];

// Calculate the SHA256 digest, and then get the first 16 bytes of it
$cek = substr(hex2bin(hash('sha256', implode('', $encryptionSegments))), 0, 16);

这里唯一的未知变量$cmk是我的内容主密钥,也就是“Z”值。在这种特定情况下,我通过从 XBOX One 令牌请求中解密它来获得主密钥。

于 2014-11-04T19:42:57.347 回答
1

这是我自己根据相同规范的实现,但草案 #39:

<?php

class ConcatKDF
{
    public static function generate($Z, $encryption_algorithm, $encryption_key_size, $apu = "", $apv = "")
    {
        $encryption_segments = array(
            self::toInt32Bits(1),                                                   // Round number 1
            $Z,                                                                     // Z (shared secret)
            self::toInt32Bits(strlen($encryption_algorithm)).$encryption_algorithm, // Size of algorithm and algorithm
            self::toInt32Bits(strlen($apu)).$apu,                                   // PartyUInfo
            self::toInt32Bits(strlen($apv)).$apv,                                   // PartyVInfo
            self::toInt32Bits($encryption_key_size),                                // SuppPubInfo (the encryption key size)
            "",                                                                     // SuppPrivInfo
        );

        return substr(hex2bin(hash('sha256', implode('', $encryption_segments))), 0, $encryption_key_size/8);
    }

    private static function toInt32Bits($value)
    {
        return hex2bin(str_pad(dechex($value), 8, "0", STR_PAD_LEFT));
    }
}

使用非常简单:

ConcatKDF::generate("The shared key here", 'A128CBC+HS256', 128);

如果你有 apu 和 apv 参数:

ConcatKDF::generate("Another shared key here", 'A128GCM', 128, "Alice", "Bob");
于 2015-01-03T20:43:42.487 回答