summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/mi1.C
blob: 82822611a4bc046fea5b07e4a95773b3307b3459 (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
// Test that binfos aren't erroneously shared between instantiations.

class PK_CryptoSystem
{
};
class PK_Encryptor : public virtual PK_CryptoSystem
{
};
class PK_FixedLengthCryptoSystem : public virtual PK_CryptoSystem
{
public:
	virtual unsigned int CipherTextLength() const =0;
};
class PK_FixedLengthEncryptor : public virtual PK_Encryptor, public virtual PK_FixedLengthCryptoSystem
{
};
class PK_SignatureSystem
{
public:
	virtual ~PK_SignatureSystem() {};
};
class PK_Signer : public virtual PK_SignatureSystem
{
public:
	virtual void Sign() = 0;
};
class PK_Verifier : public virtual PK_SignatureSystem
{
};
class PK_Precomputation
{
};
template <class T> class
PK_WithPrecomputation : public T, public virtual PK_Precomputation
{
};
typedef PK_WithPrecomputation<PK_FixedLengthEncryptor> PKWPFLE;
typedef PK_WithPrecomputation<PK_Signer> PKWPS;
template <class EC> class
ECPublicKey : public PKWPFLE
{
public:
	unsigned int CipherTextLength() const { return 1; }
	EC ec;
};
template <class EC>
class ECPrivateKey : public ECPublicKey<EC>, public PKWPS
{
	void Sign() {}
	int d;
};
template <class EC>
class ECKEP : public ECPrivateKey<EC>
{
};
class GF2NT : public PK_CryptoSystem
{
	int t1;
};
class EC2N : public PK_CryptoSystem
{
	GF2NT field;
	int a;
};
template class ECKEP<EC2N>;
template class ECKEP<int>;

int
main ()
{
  ECKEP<EC2N> foo;

  return 0;
}