- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
bottom of page 50 in RFC 4880描述了如何加密明文数据以存储在对称加密完整性保护数据包(标签 18)中。它说 CFB mode用来。我已经为 CFB 编写了代码,以便它按照第 13.9 节(针对对称加密数据包(标签 9))中的描述工作。然而,在第 50 页,它还说:
Unlike the Symmetrically Encrypted Data Packet, no special CFBresynchronization is done after encrypting this prefix data.
因此对于标签 18,步骤应如下所示:
Step by step, here is the procedure:
The feedback register (FR) is set to the IV, which is all zeros.
FR is encrypted to produce FRE (FR Encrypted). This is theencryption of an all-zero value.
FRE is xored with the first BS octets of random data prefixed tothe plaintext to produce C1 through C[BS], the first BS octetsof ciphertext.
FR is loaded with C[1] through C[BS].
FR is encrypted to produce FRE, the encryption of the first BSoctets of ciphertext.
The left two octets of FRE get xored with the next two octets ofdata that were prefixed to the plaintext. This produces C[BS+1]and C[BS+2], the next two octets of ciphertext.
(̶T̶h̶e̶ ̶r̶e̶s̶y̶n̶c̶h̶r̶o̶n̶i̶z̶a̶t̶i̶o̶n̶ ̶s̶t̶e̶p̶)̶ ̶F̶R̶ ̶i̶s̶ ̶l̶o̶a̶d̶e̶d̶ ̶w̶i̶t̶h̶ ̶C̶[̶3̶]̶ ̶t̶h̶r̶o̶u̶g̶h̶C̶[̶B̶S̶+̶2̶]̶.̶
FR is encrypted to produce̶ FRE
FRE is xored with the first BS octets of the given plaintext, nowthat we have finished encrypting the BS+2 octets of prefixeddata. This produces C[BS+3] through C[BS+(BS+2)], the next BSoctets of ciphertext.
FR is loaded with C[BS+3] to C[BS + (BS+2)] (which is C11-C18 foran 8-octet block).
FR is encrypted to produce FRE.
FRE is xored with the next BS octets of plaintext, to producethe next BS octets of ciphertext. These are loaded into FR, andthe process is repeated until the plaintext is used up.
由于没有做再同步步骤,所以第8步使用了第5步的FRE,所以可以忽略对吧?
从上面的步骤来看,我在下面的代码中误解了什么?我知道它适用于带有重新同步步骤的 Tag 9,但对于 Tag 18 来说有些东西没有加起来。
std::string CFB_encrypt(SymAlg * crypt, uint8_t packet, std::string data, std::string prefix){
uint8_t BS = crypt -> blocksize() >> 3;
// 1
std::string IV(BS, 0);
// 2
std::string FR = IV;
std::string FRE = crypt -> encrypt(FR);
// 3
FRE = xor_strings(FRE, prefix);
std::string C = FRE;
// 4
FR = C;
// 5
FRE = crypt -> encrypt(FR);
// 6
C += xor_strings(FRE.substr(0, 2), prefix.substr(BS - 2, 2));
// 7
if (packet == 9){
FR = C.substr(2, BS);
}
// 8
FRE = crypt -> encrypt(FR);
// 9
C += xor_strings(FRE, data.substr(0, BS));
unsigned int x = BS;
while (x < data.size()){
// 10
FR = C.substr(x + 2, BS);
// 11
FRE = crypt -> encrypt(FR);
// 12
C += xor_strings(FRE, data.substr(x, BS));
x += BS;
}
return C;
}
我错过了什么?
最佳答案
这里是您的第 3 步:
3. FRE is xored with the first BS octets of random data prefixed to the plaintext
与您的代码不匹配:
// 3
std::string C = FRE;
这里没有异或运算。尝试将其更改为:
std::string C = xor_strings(FRE, prefix.substr(0,8));
关于c++ - Tag18 的 OpenPGP CFB 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18238910/
我正在使用 Go 开发一个依赖于 AES CFB 的客户端应用程序。服务器端是用 C 编写的。我的问题是 Go 的 AES CFB 实现似乎与许多其他实现(包括 OpenSSL)不同。我写这个是为了检
我想问一下,这两个程序vb.net 2010和dynamic c的下面的输出有什么不同?为什么加密数据的长度不同的结果(vb.net - 16字节= 0x878e086ec00cbfeaafc9fc9
你能告诉我如何在 CFB 模式下使用 AES(这样输入(纯文本)和输出(加密文本)的大小保持不变。我试过用 AES/CFB/NoPadding 替换 AES,但它不工作。应用程序崩溃。我正在使用以下代
我正在做一个小项目,使用 AES 加密并想在流模式下使用它,这被认为是更“适合”套接字使用的模式? OFB 还是 CFB?我一直在阅读它,但无法真正做出决定,因此非常感谢任何想法。 我将使用 Open
我有一个现有的数据格式,其中的一部分在 CFB 模式下似乎以 AES 加密。明文数据长度和加密数据长度相同。 在 C# 中,我所采取的几乎所有角度似乎都期望加密长度是 block 大小的倍数.....
我有一个非常烦人的问题,两天都无法解决。我有一个 encrypt() 方法,它使用用 C++ 编写的 Crypto++ 库。该方法实现如下: string CRijndaelHelper::Encry
bottom of page 50 in RFC 4880描述了如何加密明文数据以存储在对称加密完整性保护数据包(标签 18)中。它说 CFB mode用来。我已经为 CFB 编写了代码,以便它按照第
有谁知道 iOS 库允许我们使用 AES128 CFB 模式加密而不填充。看起来 commoncrypto 不支持这个。 谢谢 最佳答案 如果可能,我建议将 OpenSSL 插入您的项目。快速搜索 "
我用 Go 编写了一个客户端应用程序,它需要与服务器端的 C 程序进行交互。客户端执行 AES CFB 加密,服务器解密。不幸的是,服务器端存在重用初始化向量的错误。它尝试根据以下条件进行 3 次解密
在运行测试以确保两个不同的库提供相同的输出时,我发现它们不使用 CFB。复制问题的代码是: from cryptography.hazmat.backends import default_backe
有人可以给我任何导致这个问题的线索吗? 我需要知道如何使用至少 128 位、CFB 和无填充的 AES 加密和解密。 一些代码或链接将不胜感激。 (我已经在谷歌上看了,但没有幸运的艰难)。 更新: 工
我正在尝试解密 AES-256 加密的 Base64 编码的数据。我的这部分JS代码: var data = "Ic9OcXxn2MnpgFwH4SHkxSY3laYB+kkevevwOPeQjLEe
我正在 Ruby 中加密一些字符串,将其发送到客户端并尝试在那里解密该字符串。我没有使用 aes rollup(尽管我尝试过得到相同的结果)。我已将 aes.js、core.js 和 cipher-c
在什么情况下优先选择它们中的哪一个? 我想查看各种模式的评估标准列表,并可能讨论每个标准的适用性。 例如, 我认为其中一个标准是用于加密和解密的“代码大小”,这对于微代码嵌入式系统(如 802.11
我正在尝试获取一些 python 代码来解密使用 OS X CommonCrypto API 加密的数据。几乎没有关于 CommonCrypto 使用的确切选项的文档,因此我需要一些帮助来确定在 Py
我有这个加密功能: String Encrypt(String text, byte[] keyBytes) throws Exception { Cipher cipher = Cipher
我已经尝试运行代码大约 3 天了,但我无法找出我犯的错误。 我正在使用 128 位的 AES/CFB/NOPadding 密码加盐Salt_Len = 8 字节 和 IV_Len = 16 字节 pa
我有一个问题。我有一种在 php 和 C# 中加密密码的方法,但我无法使用这两种算法获得相同的结果。有人可以帮助我吗? PhP C# var password = padString("MySecr
我有一个 PHP 伺服器,它使用 CFB 模式在 3DES 中解密数据 我用 PHP 加密: $montant = "500"; $message_crypte = mcrypt_encrypt(MC
我需要与加密请求和答案的 PHP API 进行交换。在我这边,我在 rails 4.0.0 (ruby 2.0) 中,我无法让它工作。 我已经阅读了很多关于这个主题的答案,并试图理解 mcrypt 是
我是一名优秀的程序员,十分优秀!