Click here to Skip to main content
Click here to Skip to main content
Articles » Languages » XML » Web Services » Downloads
 

Central Key Management

By , 8 Mar 2006
 
centralkeymanager_src.zip
Core
Cryptography
WrappedData.xsx
Properties
KeyManager
Properties
TestClient
Properties
Settings.settings
Web References
KeyManager
Reference.map
Service.disco
Service.wsdl
SessionKeyInfo.datasource
using System;
using System.Collections.Generic;
using System.Text;

namespace KeyManager
{
    class WrappedKey
    {
        private int _keyId = 0;
        private string _encryptedKey = string.Empty;
        private string _publicKey = string.Empty;

        public string PublicKey
        {
            get { return _publicKey; }
            set { _publicKey = value; }
        }

        public WrappedKey(int keyId, string encryptedKey, string publicKey )
        {
            _keyId = keyId;
            _encryptedKey = encryptedKey;
            _publicKey = publicKey;
        }

        public int KeyId
        {
            get { return _keyId; }
            set { _keyId = value; }
        }

        public string EncrypedKeyData
        {
            get { return _encryptedKey; }
            set { _encryptedKey = value; }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Brian Bayless
United States United States
Member
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 8 Mar 2006
Article Copyright 2006 by Brian Bayless
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid