I searched in Monticello for the package System-Digital Signatures and in the Pharo repository I only see two commits and even in the first one, these two methods are not there. But, they are in Squeak. So, know I guess where this commit should be? where I can search ?
Thanks!
Mariano
Hi folks. I noticed that this two methods were removed from ThirtyTwoBitRegister:
asByteArray��
������ ^ ByteArray with: (low bitAnd: 16rFF) with: (low bitShift: -8) with: (hi bitAnd: 16rFF) with: (hi bitShift: -8)
reverseLoadFrom: aByteArray at: index��
�������� "Load my 32-bit value from the four bytes of the given ByteArraystarting at the given index. Consider the first byte to contain the mostsignificant bits of the word (i.e., use big-endian byte ordering)."�
�������� hi := ((aByteArray at: index + 3) bitShift: 8) + ( aByteArray at: index + 2).��
�������� low := ((aByteArray at: index + 1) bitShift: 8) + ( aByteArray at: index).
I need them for Glorp. I looked but I didn't found a similar message for them. I don't think adding them as an extension is a good solution here since this seems to be very "internal". is there a reason of the removing? If not, could them be added again? If there are reason, which should be the best approach to fix this in mi case?
I have no problem in commit them if you want.
Thanks!
Mariano