Пример #1
0
        public void TestReenrollNullUser()
        {
            HFCAClient client = HFCAClient.Create("client", "http://localhost:99", null);

            client.CryptoSuite = crypto;
            client.Reenroll(null);
        }
Пример #2
0
        public void TestReenrollNullEnrollment()
        {
            HFCAClient client = HFCAClient.Create("client", "http://localhost:99", null);

            client.CryptoSuite = crypto;
            admin.Enrollment   = null;
            client.Reenroll(admin);
        }