[Distutils] Re: wrong SHA256 on setuptools

2019-03-30 Thread Martin Baker
No, you're right, that was totally (my) user error. =)

On Thu, Mar 21, 2019 at 10:38 AM Dustin Ingram  wrote:

> Sorry, that should have been:
>
> $ wget -q
> https://files.pythonhosted.org/packages/c2/f7/c7b501b783e5a74cf1768bc174ee4fb0a8a6ee5af6afa92274ff964703e0/setuptools-40.8.0.zip
> tmp $ openssl dgst -sha256 setuptools-40.8.0.zip
> SHA256(setuptools-40.8.0.zip)=
> 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
>
> On Thu, Mar 21, 2019 at 12:37 PM Dustin Ingram  wrote:
>
>> How are you generating your sum? Looks right to me:
>>
>> $ wget -q
>> https://files.pythonhosted.org/packages/c2/f7/c7b501b783e5a74cf1768bc174ee4fb0a8a6ee5af6afa92274ff964703e0/setuptools-40.8.0.zip
>> $ SHA256(setuptools-40.8.0.zip)=
>> 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
>>
>> On Thu, Mar 21, 2019 at 12:27 PM Martin Baker  wrote:
>>
>>> The SHA256 listed for setuptools-40.8.0.zip
>>> is 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
>>>
>>> But the actual SHA sum is 3547552b1009283f7ae31fded32ad33ed160e671
>>>
>>> Martin
>>>
>>> --
>>> Martin Baker
>>> Head of Product, FastComp
>>> 415.845.0729
>>> --
>>> Distutils-SIG mailing list -- distutils-sig@python.org
>>> To unsubscribe send an email to distutils-sig-le...@python.org
>>> https://mail.python.org/mailman3/lists/distutils-sig.python.org/
>>> Message archived at
>>> https://mail.python.org/archives/list/distutils-sig@python.org/message/3A5MD3C75KKU4QBF7EA2WBJSFWKK43F4/
>>>
>>

-- 
Martin Baker
Head of Product, FastComp
415.845.0729
--
Distutils-SIG mailing list -- distutils-sig@python.org
To unsubscribe send an email to distutils-sig-le...@python.org
https://mail.python.org/mailman3/lists/distutils-sig.python.org/
Message archived at 
https://mail.python.org/archives/list/distutils-sig@python.org/message/HLF242HBV7Y6CFVDVAZRSBJR5IFCSUSC/


[Distutils] Re: wrong SHA256 on setuptools

2019-03-21 Thread Jeremy Stanley
On 2019-03-20 14:52:47 -0700 (-0700), Martin Baker wrote:
> The SHA256 listed for setuptools-40.8.0.zip
> is 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
> 
> But the actual SHA sum is 3547552b1009283f7ae31fded32ad33ed160e671

Both of the things you've stated here are true. The sha256sum
utility says
6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
while the sha1sum utility says
3547552b1009283f7ae31fded32ad33ed160e671. Make note that one is a
SHA2-256 checksum while the other is a SHA1 checksum.
-- 
Jeremy Stanley


signature.asc
Description: PGP signature
--
Distutils-SIG mailing list -- distutils-sig@python.org
To unsubscribe send an email to distutils-sig-le...@python.org
https://mail.python.org/mailman3/lists/distutils-sig.python.org/
Message archived at 
https://mail.python.org/archives/list/distutils-sig@python.org/message/PWCBBFSMX4WT5H5K6DBQ4GZRGTLJRZHS/


[Distutils] Re: wrong SHA256 on setuptools

2019-03-21 Thread Dustin Ingram
Sorry, that should have been:

$ wget -q
https://files.pythonhosted.org/packages/c2/f7/c7b501b783e5a74cf1768bc174ee4fb0a8a6ee5af6afa92274ff964703e0/setuptools-40.8.0.zip
tmp $ openssl dgst -sha256 setuptools-40.8.0.zip
SHA256(setuptools-40.8.0.zip)=
6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d

On Thu, Mar 21, 2019 at 12:37 PM Dustin Ingram  wrote:

> How are you generating your sum? Looks right to me:
>
> $ wget -q
> https://files.pythonhosted.org/packages/c2/f7/c7b501b783e5a74cf1768bc174ee4fb0a8a6ee5af6afa92274ff964703e0/setuptools-40.8.0.zip
> $ SHA256(setuptools-40.8.0.zip)=
> 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
>
> On Thu, Mar 21, 2019 at 12:27 PM Martin Baker  wrote:
>
>> The SHA256 listed for setuptools-40.8.0.zip
>> is 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
>>
>> But the actual SHA sum is 3547552b1009283f7ae31fded32ad33ed160e671
>>
>> Martin
>>
>> --
>> Martin Baker
>> Head of Product, FastComp
>> 415.845.0729
>> --
>> Distutils-SIG mailing list -- distutils-sig@python.org
>> To unsubscribe send an email to distutils-sig-le...@python.org
>> https://mail.python.org/mailman3/lists/distutils-sig.python.org/
>> Message archived at
>> https://mail.python.org/archives/list/distutils-sig@python.org/message/3A5MD3C75KKU4QBF7EA2WBJSFWKK43F4/
>>
>
--
Distutils-SIG mailing list -- distutils-sig@python.org
To unsubscribe send an email to distutils-sig-le...@python.org
https://mail.python.org/mailman3/lists/distutils-sig.python.org/
Message archived at 
https://mail.python.org/archives/list/distutils-sig@python.org/message/BAD4U56JQPTEDRBMMOF5MD45G75N2XVD/


[Distutils] Re: wrong SHA256 on setuptools

2019-03-21 Thread Dustin Ingram
How are you generating your sum? Looks right to me:

$ wget -q
https://files.pythonhosted.org/packages/c2/f7/c7b501b783e5a74cf1768bc174ee4fb0a8a6ee5af6afa92274ff964703e0/setuptools-40.8.0.zip
$ SHA256(setuptools-40.8.0.zip)=
6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d

On Thu, Mar 21, 2019 at 12:27 PM Martin Baker  wrote:

> The SHA256 listed for setuptools-40.8.0.zip
> is 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
>
> But the actual SHA sum is 3547552b1009283f7ae31fded32ad33ed160e671
>
> Martin
>
> --
> Martin Baker
> Head of Product, FastComp
> 415.845.0729
> --
> Distutils-SIG mailing list -- distutils-sig@python.org
> To unsubscribe send an email to distutils-sig-le...@python.org
> https://mail.python.org/mailman3/lists/distutils-sig.python.org/
> Message archived at
> https://mail.python.org/archives/list/distutils-sig@python.org/message/3A5MD3C75KKU4QBF7EA2WBJSFWKK43F4/
>
--
Distutils-SIG mailing list -- distutils-sig@python.org
To unsubscribe send an email to distutils-sig-le...@python.org
https://mail.python.org/mailman3/lists/distutils-sig.python.org/
Message archived at 
https://mail.python.org/archives/list/distutils-sig@python.org/message/65EPTF2CVBLO5UUNSYD6TYRBQ53UWAQG/


[Distutils] Re: wrong SHA256 on setuptools

2019-03-21 Thread Thomas Kluyver
I think you've done SHA1 instead of SHA256.

On Thu, Mar 21, 2019, at 5:27 PM, Martin Baker wrote:
> The SHA256 listed for setuptools-40.8.0.zip is 
> 6e4eec90337e849ade7103723b9a99631c1f0d19990d6e8412dc42f5ae8b304d
> 
> But the actual SHA sum is 3547552b1009283f7ae31fded32ad33ed160e671
> 
> Martin
> 
> -- 
> Martin Baker
> Head of Product, FastComp
> 415.845.0729
> --
> Distutils-SIG mailing list -- distutils-sig@python.org
> To unsubscribe send an email to distutils-sig-le...@python.org
> https://mail.python.org/mailman3/lists/distutils-sig.python.org/
> Message archived at 
> https://mail.python.org/archives/list/distutils-sig@python.org/message/3A5MD3C75KKU4QBF7EA2WBJSFWKK43F4/
> 
--
Distutils-SIG mailing list -- distutils-sig@python.org
To unsubscribe send an email to distutils-sig-le...@python.org
https://mail.python.org/mailman3/lists/distutils-sig.python.org/
Message archived at 
https://mail.python.org/archives/list/distutils-sig@python.org/message/IQXCFJY5EMEKSX2WR42FAC3MJ7XZGTBG/