summaryrefslogtreecommitdiff
path: root/src/msil/ch/epfl/lamp/compiler/msil/AssemblyName.java
blob: acdcb32e3326ae72d34262514e815d182224aef6 (plain) (blame)
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
95
96
/*
 * System.Reflection-like API for access to .NET assemblies (DLL & EXE)
 */


package ch.epfl.lamp.compiler.msil;

import javax.crypto.Mac;

import java.security.MessageDigest;

import ch.epfl.lamp.compiler.msil.util.Table;

/**
 * Fully describes an assembly's unique identity.
 * Right now it's only the name
 *
 * @author Nikolay Mihaylov
 * @version 1.0
 */
public class AssemblyName {

    //##########################################################################
    // public interface

    /** The simple, unencrypted name of the assembly. */
    public String Name;

    /**
     * Gets or sets the major, minor, revision, and build numbers
     * of the assembly.
     */
    public Version Version;

    /**
     * Gets a strong name consisting of a public key, a given name,
     * and version parts.
     */
    public byte[] GetPublicKeyToken() {
	return publicKeyToken == null ? null : (byte[]) publicKeyToken.clone();
    }

    /**
     * Sets a strong name consisting of a public key, a given name,
     * and version parts.
     */
    public void SetPublicKeyToken(byte[] key) {
	this.publicKeyToken = key.length == 0 ? null : (byte[]) key.clone();
    }

    /**
     * Returns the public key identifying the originator of the assembly.
     */
    public byte[] GetPublicKey() {
	return publicKey == null ? null : (byte[]) publicKey.clone();
    }

    /**
     * Sets the public key identifying the originator of the assembly.
     */
    public void SetPublicKey(byte[] key) {
	if (key.length > 0) {
	    this.publicKey = (byte[]) key.clone();
	    byte[] hash = sha.digest(key);
	    byte[] keyToken = new byte[8];
	    for (int i = 0; i < keyToken.length; i++)
		keyToken[i] = hash[hash.length - 1 - i];
	    this.publicKeyToken = keyToken;
	    //System.out.println("Pubic key and key token of assembly " + this + ":");
	    //System.out.println("\tPublic key = " + Table.bytes2hex(key));
	    //System.out.println("\tKey token  = " + Table.bytes2hex(keyToken));
	}
    }

    public String toString() {
	return Name + ", Version=" + Version;
    }

    //##########################################################################

    private byte[] publicKeyToken;

    private byte[] publicKey;

    private static final MessageDigest sha;
    static {
	MessageDigest md = null;
	try {
	    md = MessageDigest.getInstance("SHA");
	} catch (java.security.NoSuchAlgorithmException e) {}
	sha = md;
    }

    //##########################################################################

} // class AssemblyName