Heya all,

I have posted before in various news-groups, without much success, but
I'll try here anyway :-)

I am just looking for pointers on how to implement a Java-based OpenSRS
client. So far it's been relativelty easy except for the old chesnut:
AUTHENTICATION. There is a *woeful* lack of documentation about this
subject in the documentation, almost scandalously so; yet despite a
whole slew of newsgroup posts from similar people asking similar
questions, Tucows have seemed reluctant to clarify the issue.

I am using the libaries by Robert Dale, but not having much success. I
have 'cooked' the key

                System.arraycopy(hash, 0, realkey, 0, 16);
                md5.Init(); ;
                hash = md5.Update(realkey, 0, 16)
                System.arraycopy(hash, 0, realkey, 16, 16);
                md5.Init(); ;
                hash = md5.Update(realkey, 0, 32)
                System.arraycopy(hash, 0, realkey, 32, 16);
                md5.Init(); md5.Update(realkey, 0, 48);
                hash = md5.Final();
                System.arraycopy(hash, 0, realkey, 48, 8);
_______________________________________________
domains-dev mailing list
domains-dev@discuss.tucows.com
http://discuss.tucows.com/mailman/listinfo/domains-dev

Reply via email to