Supposing two IPv6 addresses ip1 (abc::1/64), ip2 (abc::2/64) are
given, what's the algorithm to determine if they're part of the same
subnet or not?
They are on the same subnet if the first 64 bits are equal. These are the first four 'blocks' in the address. If you write the full addresses they become 0abc:0000:0000:0000:0000:0000:0000:0001 and 0abc:0000:0000:0000:0000:0000:0000:0002. The first 64 bits (the 0abc:0000:0000:0000: part) is equal, so they are on the same subnet.
For IPv4, each octet in one address is masked with the subnet octet
and the result compared with the result of a similar exercise for the
second address. Could we do a similar thing for the each hextet in the
IPv6 address?
Actually, you mask the bits, not the octet. But you can still use the same technique. Convert the address to bits and mask it with a bit sequence corresponding to the prefix length. So a /64 would be 64 bits with value 1 followed by 64 bits with value 0. For a /48 it would be 48 bits with value 1 followed by 80 bits with value 0.
Also, in IPv6, is a prefix length /64 equivalent to
'ffff:ffff:ffff:ffff::'? How is the netmask represented in IPv6
address format?
Usually you don't, but 'ffff:ffff:ffff:ffff::' corresponds to a /64 netmask.