source: java/net/deterlab/abac/InternalCredential.java @ a7f73b5

abac0-leakabac0-meimei-idmei-rt0-nmei_rt0tvf-new-xml
Last change on this file since a7f73b5 was a7f73b5, checked in by Ted Faber <faber@…>, 11 years ago

Document cleanup. Change a few visibilities.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1package net.deterlab.abac;
2
3import java.io.*;
4import java.math.*;
5
6import java.util.*;
7import java.security.*;
8import java.security.cert.*;
9
10import javax.security.auth.x500.*;
11
12import org.bouncycastle.asn1.*;
13import org.bouncycastle.asn1.x509.*;
14import org.bouncycastle.x509.*;
15import org.bouncycastle.x509.util.*;
16import 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 */
25public 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     * this will always fail for an InternalCredential.
42     * @param i the Identity that will issue the certificate
43     * @throws ABACException whenever called.
44     */
45    public void make_cert(Identity i) throws ABACException {
46        throw new ABACException("Cannot create certificate for " +
47                "an InternalCredential");
48    }
49
50    /**
51     * This will always fail for an InternalCredential.
52     * @param s the OutputStream on which to write
53     * @throws IOException whenever called.
54     */
55    public void write(OutputStream s) throws IOException {
56        throw new IOException("Cannot write certificate for " +
57                "an InternalCredential");
58    }
59
60    /**
61     * This will always fail for an  InternalCredential.
62     * @param fn a String containing the output filename
63     * @throws IOException whenever called.
64     */
65    public void write(String fn) 
66        throws IOException, FileNotFoundException {
67        write((OutputStream) null);
68    }
69
70    /**
71     * Return true if this Credential has a certificate associated; it never
72     * will.
73     * @return false
74     */
75    public boolean hasCertificate() { return false; }
76
77}
Note: See TracBrowser for help on using the repository browser.