- 论坛徽章:
- 8
|
asdmonster 发表于 2013-12-11 12:39 ![]()
感谢,但是:最后几个随机填充数,解密的时候怎么解密啊?
当然,我现在遇到的问题实际上是这样的:
OAEP文档有说明,不同的应用加密的结果的确是不同的;但解密时,因为随机种子其实是写在加密结果里的,所以可以直接还原:
1.3.1
OAEP encoding operation
EME-OAEP-Encode(M, P, emLen)
Options:
Hash
hash function (hLen denotes the length in octets of the hash function output)
M GF mask generation function
Input:
M message to be encoded, an octet string of length at most emLen − 1 − 2hLen
(mLen denotes the length in octets of the message)
P encoding parameters, an octet string
9
RSA-OAEP Encryption Scheme / Chapter 1
10
emLen intended length in octets of the encoded message, at least 2hLen + 1
Output: EM
encoded message, an octet string of length emLen
Errors: ‘‘message too long’’; ‘‘parameter string too long’’
1. If the length of P is greater than the input limitation for the hash function (261 − 1 octets for
SHA-1) then output ‘‘parameter string too long’’ and stop.
2. If mLen > emLen − 2hLen − 1, output ‘‘message too long’’ and stop.
3. Generate an octet string P S consisting of emLen − mLen − 2hLen − 1 zero octets. The length of
PS may be 0.
4. Let pHash = Hash(P ), an octet string of length hLen.
5. Concatenate pHash, P S , the message M , and other padding to form a data block DB as
DB = pHash P S 01 M .
6. Generate a random octet string seed of length hLen.
7. Let dbMask = M GF (seed , emLen − hLen).
8. Let maskedDB = DB ⊕ dbMask.
9. Let seedMask = M GF (maskedDB, hLen).
10. Let maskedSeed = seed ⊕ seedMask.
11. Let EM = maskedSeed maskedDB.
12. Output EM .
Remark.
The EME-OAEP encoding operation is illustrated in Figure C.1 at the end of this
document.
1.3.2
OAEP decoding operation
EME-OAEP-Decode(EM, P )
Options:
Hash
hash function (hLen denotes the length in octets of the hash function output)
MGF mask generation function
Input:
EM
encoded message, an octet string of length at least 2hLen + 1 (emLen denotes the
length in octets of EM )
-
P encoding parameters, an octet string
Output: m recovered message, an octet string of length at most emLen − 1 − 2hLen
Errors: ‘‘decoding error’’
1. If the length of P is greater than the input limitation for the hash function (261 − 1 octets for
SHA-1) then output ‘‘decoding error’’ and stop.
2. If emLen < 2hLen + 1, output ‘‘decoding error’’ and stop.
3. Let maskedSeed be the first hLen octets of EM and let maskedDB be the remaining emLen−hLen
octets.
4. Let seedMask = M GF (maskedDB, hLen).
5. Let seed = maskedSeed ⊕ seedMask.
6. Let dbMask = M GF (seed , emLen − hLen).
7. Let DB = maskedDB ⊕ dbMask.
8. Let pHash = Hash(P ), an octet string of length hLen.
9. Separate DB into an octet string pHash’ consisting of the first hLen octets of DB , a (possibly
empty) octet string P S consisting of consecutive zero octets following pHash’, and a message
M as
DB = pHash’ P S 01 M.
If there is no 01 octet to separate P S from M , output ‘‘decoding error’’ and stop.
10. If pHash’ does not equal pHash, output ‘‘decoding error’’ and stop.
11. Output M .
Remark.
The EME-OAEP decoding operation is illustrated in Figure C.2 at the end of this
document.
你的问题,原因应该不在这里。先看看调用的解密方法究竟对不对、给解密接口传入的pading方式、以及pading的版本号是否相同。
|
|