summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/Permissions/StrongNamePublicKeyBlob.cs
blob: 823eaba93814c50cc020451e12c1dff20d740566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace System.Security.Permissions
{
    using System;
    using System.Security.Util;
    using System.Diagnostics.Contracts;

    [System.Runtime.InteropServices.ComVisible(true)]
    [Serializable] sealed public class StrongNamePublicKeyBlob
    {
        internal byte[] PublicKey;
        
        internal StrongNamePublicKeyBlob()
        {
        }
        
        public StrongNamePublicKeyBlob( byte[] publicKey )
        {
            if (publicKey == null)
                throw new ArgumentNullException( nameof(PublicKey) );
            Contract.EndContractBlock();
        
            this.PublicKey = new byte[publicKey.Length];
            Array.Copy( publicKey, 0, this.PublicKey, 0, publicKey.Length );
        }
        
        internal StrongNamePublicKeyBlob( String publicKey )
        {
            this.PublicKey = Hex.DecodeHexString( publicKey );
        }        
        
        private static bool CompareArrays( byte[] first, byte[] second )
        {
            if (first.Length != second.Length)
            {
                return false;
            }
            
            int count = first.Length;
            for (int i = 0; i < count; ++i)
            {
                if (first[i] != second[i])
                    return false;
            }
            
            return true;
        }
                
        
        internal bool Equals( StrongNamePublicKeyBlob blob )
        {
            if (blob == null)
                return false;
            else 
                return CompareArrays( this.PublicKey, blob.PublicKey );
        }

        public override bool Equals( Object obj )
        {
            if (obj == null || !(obj is StrongNamePublicKeyBlob))
                return false;

            return this.Equals( (StrongNamePublicKeyBlob)obj );
        }

        static private int GetByteArrayHashCode( byte[] baData )
        {
            if (baData == null)
                return 0;

            int accumulator = 0;

            for (int i = 0; i < baData.Length; ++i)
            {
                accumulator = (accumulator << 8) ^ (int)baData[i] ^ (accumulator >> 24);
            }

            return accumulator;
        }

        public override int GetHashCode()
        {
            return GetByteArrayHashCode( PublicKey );
        }

        public override String ToString()
        {
            return Hex.EncodeHexString( PublicKey );
        }
    }
}