• Salted Password Hashing

    时间:2021-04-01 07:34:51

    Here are some examples of poor wacky hash functions I've seen suggested in forums on the internet.md5(sha1(password))md5(md5(salt) + md5(password))sha...

  • ACM ICPC 2015 Moscow Subregional Russia, Moscow, Dolgoprudny, October, 18, 2015 H. Hashing

    时间:2021-03-14 08:37:13

    H. Hashingtime limit per test1 secondmemory limit per test512 megabytesinputstandard inputoutputstandard outputIn this problem you are given a byte ar...

  • 一致性哈希(consistent hashing)算法

    时间:2020-12-23 06:14:31

    文章同步发表在博主的网站朗度云,传输门:http://www.wolfbe.com/detail/201608/341.html1、背景       我们都知道memcached服务器是不提供分布式功能的,memcached的分布式完全是由客户端来实现的。在部署memcached服务器集群时,我们需...

  • 一致性哈希算法(consistent hashing)(转)

    时间:2020-12-21 08:40:04

    原文链接:每天进步一点点——五分钟理解一致性哈希算法(consistent hashing) 一致性哈希算法在1997年由麻省理工学院提出的一种分布式哈希(DHT)实现算法,设计目标是为了解决因特网中的热点(Hot spot)问题,初衷和CARP十分类似。一致性哈希修正了CARP使用的简 单哈希算法...

  • HNU 13064 Cuckoo for Hashing解题报告 North America - East Central 2013

    时间:2020-12-11 20:00:38

    题目大意:使用两个哈希表来解决哈希冲突的问题。假如现在有两个哈希表分别为:H1,H2 ,大小分别为:n1,n2;现有一数据X需要插入,其插入方法为:1、计算index1 = X MOD N1,  若哈希表H1的index1位置没有保存数据,则直接将X保存到H1得index1;否则,若哈希表H1的in...