Results 1 to 2 of 2

Thread: IceSSL::PublicKey key() member accessibility

  1. #1
    paolo is offline Registered User
    Name: paolo volpi
    Organization: tvblob
    Project: tvblob blobbox
    Join Date
    Aug 2007
    Posts
    22

    IceSSL::PublicKey key() member accessibility

    I'm using Ice 3.2.1 version, in file include/IceSSL/Plugin.h line 124:

    class ICE_SSL_API PublicKey : public IceUtil::Shared
    {
    ~PublicKey();

    EVP_PKEY* key() const;

    private:

    PublicKey(EVP_PKEY*);
    friend class Certificate;

    EVP_PKEY* _key;
    };

    I'm wondering if a "public" access specifier is missing at the beginning of class declaration.
    This cause will be usefull to access at the key() member from the outside.

  2. #2
    matthew's Avatar
    matthew is offline ZeroC Staff
    Name: Matthew Newhook
    Organization: ZeroC, Inc.
    Project: Internet Communications Engine
    Join Date
    Feb 2003
    Location
    NL, Canada
    Posts
    1,458
    That looks like an oversight (or perhaps a slip of the delete button!). Thanks for pointing that out.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 01-13-2011, 06:58 AM
  2. slice2cs issue with member initialization
    By romank in forum Bug Reports
    Replies: 1
    Last Post: 09-28-2010, 11:08 AM
  3. C++ mapping for a dictionary with an enum as the key
    By mefoster in forum Help Center
    Replies: 3
    Last Post: 10-14-2009, 10:38 AM
  4. IceSSL CA public key and C#
    By tkrieger in forum Help Center
    Replies: 1
    Last Post: 12-08-2006, 10:53 PM
  5. Why class cannot be a key for a dictionary?
    By DeepDiver in forum Comments
    Replies: 1
    Last Post: 10-05-2005, 02:17 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •