mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
ipa-otptoken-import: Make PBKDF2 refer to the pkcs5 namespace
For some unknown reason, when I wrote the ipa-otptoken-import script I used bad input data which had the PBKDF2 parameters in the wrong XML namespace. I have corrected this input data to match RFC 6030. https://pagure.io/freeipa/issue/7035 Signed-off-by: Nathaniel McCallum <npmccallum@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
This commit is contained in:
committed by
Tomas Krizek
parent
c14aa6cdac
commit
bc05ab9922
@@ -8,14 +8,14 @@
|
||||
<xenc11:DerivedKey>
|
||||
<xenc11:KeyDerivationMethod
|
||||
Algorithm="http://www.rsasecurity.com/rsalabs/pkcs/schemas/pkcs-5v2-0#pbkdf2">
|
||||
<xenc11:PBKDF2-params>
|
||||
<xenc11:Salt>
|
||||
<xenc11:Specified>Ej7/PEpyEpw=</xenc11:Specified>
|
||||
</xenc11:Salt>
|
||||
<xenc11:IterationCount>1000</xenc11:IterationCount>
|
||||
<xenc11:KeyLength>16</xenc11:KeyLength>
|
||||
<xenc11:PRF/>
|
||||
</xenc11:PBKDF2-params>
|
||||
<pkcs5:PBKDF2-params>
|
||||
<Salt>
|
||||
<Specified>Ej7/PEpyEpw=</Specified>
|
||||
</Salt>
|
||||
<IterationCount>1000</IterationCount>
|
||||
<KeyLength>16</KeyLength>
|
||||
<PRF/>
|
||||
</pkcs5:PBKDF2-params>
|
||||
</xenc11:KeyDerivationMethod>
|
||||
<xenc:ReferenceList>
|
||||
<xenc:DataReference URI="#ED"/>
|
||||
|
||||
Reference in New Issue
Block a user