[3612811] | 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 |
---|
[a7f73b5] | 20 | * should never be converted to a cert or output. They are useful outside as |
---|
| 21 | * placeholder credentials outside the main jabac library. |
---|
[3612811] | 22 | * @author <a href="http://abac.deterlab.net">ISI ABAC team</a> |
---|
[4560b65] | 23 | * @version 1.4 |
---|
[3612811] | 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 | |
---|
[675770e] | 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 | |
---|
[3612811] | 53 | /** |
---|
[a7f73b5] | 54 | * Create a certificate from this credential issued by the given identity; |
---|
| 55 | * this will always fail for an InternalCredential. |
---|
[3612811] | 56 | * @param i the Identity that will issue the certificate |
---|
[a7f73b5] | 57 | * @throws ABACException whenever called. |
---|
[3612811] | 58 | */ |
---|
| 59 | public void make_cert(Identity i) throws ABACException { |
---|
| 60 | throw new ABACException("Cannot create certificate for " + |
---|
| 61 | "an InternalCredential"); |
---|
| 62 | } |
---|
| 63 | |
---|
| 64 | /** |
---|
[736a573] | 65 | * This will always do nothing for an InternalCredential. |
---|
[3612811] | 66 | * @param s the OutputStream on which to write |
---|
[736a573] | 67 | * @throws IOException never |
---|
[3612811] | 68 | */ |
---|
[736a573] | 69 | public void write(OutputStream s) throws IOException { } |
---|
[3612811] | 70 | |
---|
| 71 | /** |
---|
[736a573] | 72 | * This will always do nothing for an InternalCredential. |
---|
[3612811] | 73 | * @param fn a String containing the output filename |
---|
[736a573] | 74 | * @throws IOException never |
---|
[3612811] | 75 | */ |
---|
| 76 | public void write(String fn) |
---|
| 77 | throws IOException, FileNotFoundException { |
---|
| 78 | write((OutputStream) null); |
---|
| 79 | } |
---|
| 80 | |
---|
| 81 | /** |
---|
[a7f73b5] | 82 | * Return true if this Credential has a certificate associated; it never |
---|
| 83 | * will. |
---|
| 84 | * @return false |
---|
[3612811] | 85 | */ |
---|
| 86 | public boolean hasCertificate() { return false; } |
---|
| 87 | |
---|
| 88 | } |
---|