1 | package net.deterlab.abac; |
---|
2 | |
---|
3 | import java.io.*; |
---|
4 | import java.math.*; |
---|
5 | |
---|
6 | import java.util.*; |
---|
7 | import java.security.*; |
---|
8 | import java.security.cert.*; |
---|
9 | |
---|
10 | import javax.security.auth.x500.*; |
---|
11 | |
---|
12 | import org.bouncycastle.asn1.*; |
---|
13 | import org.bouncycastle.asn1.x509.*; |
---|
14 | import org.bouncycastle.x509.*; |
---|
15 | import org.bouncycastle.x509.util.*; |
---|
16 | import org.bouncycastle.openssl.*; |
---|
17 | |
---|
18 | /** |
---|
19 | * An Internal Credential, used to represent extra arcs in the proof graph. It |
---|
20 | * should never be converted to a cert or output. They are useful outside as |
---|
21 | * placeholder credentials outside the main jabac library. |
---|
22 | * @author <a href="http://abac.deterlab.net">ISI ABAC team</a> |
---|
23 | * @version 1.4 |
---|
24 | */ |
---|
25 | public class InternalCredential extends Credential { |
---|
26 | |
---|
27 | /** |
---|
28 | * Create an empty InternalCredential. |
---|
29 | */ |
---|
30 | public InternalCredential() { super(); } |
---|
31 | /** |
---|
32 | * Create a credential from a head and tail role. This credential has no |
---|
33 | * underlying certificate, and cannot be exported or used in real proofs. |
---|
34 | * @param head the Role at the head of the credential |
---|
35 | * @param tail the Role at the tail of the credential |
---|
36 | */ |
---|
37 | public InternalCredential(Role head, Role tail) {super(head, tail); } |
---|
38 | |
---|
39 | /** |
---|
40 | * Create a certificate from this credential issued by the given identity |
---|
41 | * valid for the given period; this will always fail for an |
---|
42 | * InternalCredential. |
---|
43 | * @param i the Identity that will issue the certificate |
---|
44 | * @param validity a long holding the number of seconds that the credential |
---|
45 | * is valid for. |
---|
46 | * @throws ABACException whenever called. |
---|
47 | */ |
---|
48 | public void make_cert(Identity i, long validity) throws ABACException { |
---|
49 | throw new ABACException("Cannot create certificate for " + |
---|
50 | "an InternalCredential"); |
---|
51 | } |
---|
52 | |
---|
53 | /** |
---|
54 | * Create a certificate from this credential issued by the given identity; |
---|
55 | * this will always fail for an InternalCredential. |
---|
56 | * @param i the Identity that will issue the certificate |
---|
57 | * @throws ABACException whenever called. |
---|
58 | */ |
---|
59 | public void make_cert(Identity i) throws ABACException { |
---|
60 | throw new ABACException("Cannot create certificate for " + |
---|
61 | "an InternalCredential"); |
---|
62 | } |
---|
63 | |
---|
64 | /** |
---|
65 | * This will always do nothing for an InternalCredential. |
---|
66 | * @param s the OutputStream on which to write |
---|
67 | * @throws IOException never |
---|
68 | */ |
---|
69 | public void write(OutputStream s) throws IOException { } |
---|
70 | |
---|
71 | /** |
---|
72 | * This will always do nothing for an InternalCredential. |
---|
73 | * @param fn a String containing the output filename |
---|
74 | * @throws IOException never |
---|
75 | */ |
---|
76 | public void write(String fn) |
---|
77 | throws IOException, FileNotFoundException { |
---|
78 | write((OutputStream) null); |
---|
79 | } |
---|
80 | |
---|
81 | /** |
---|
82 | * Return true if this Credential has a certificate associated; it never |
---|
83 | * will. |
---|
84 | * @return false |
---|
85 | */ |
---|
86 | public boolean hasCertificate() { return false; } |
---|
87 | |
---|
88 | } |
---|