summary refs log tree commit diff
path: root/crypto/src/util/Objects.cs
blob: 4d49ac9de29ec5237576ad7ca070e5531b86b6aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Org.BouncyCastle.Utilities
{
    public static class Objects
    {
        public static int GetHashCode(object obj)
        {
            return null == obj ? 0 : obj.GetHashCode();
        }
    }
}