4

この問題を解決するために何度も試みましたが、何も得られませんでした。

このコードの主な目的は、ネストされたクラスNslObject::KeyKまたはにペア キー (パブリックおよびプライベート) を保存することNewKeyPair1です。

.cpp ファイル

        unsigned long int keyLength = 10;
        //KeyPair ADD(RSA::GenerateKeyPair(keyLength));
        NslObject::KeyK(RSA::GenerateKeyPair(keyLength));
        typedef NslObject::KeyK NewKeyPair1; 
        NewKeyPair1(RSA::GenerateKeyPair(keyLength));

        //NslObject::
        Key OtmanK(NslObject::Get_PublicKey(NewKeyPair1));

.h ファイル:

 #ifndef    __NCTUNS_nslobject_h__
 #define __NCTUNS_nslobject_h__

 #include <stdio.h>
 #include <event.h>

 //---------------------------------------------------
 #include <cstdlib>      //srand()
 #include <iostream>     //cout
 #include <ctime>        //time()
 #include <cstring>      //strcmp()
 //#include "test.h"       //testing functions
 #include "RSA.h"        //GenerateKeyPair()
 #include "PrimeGenerator.h"     //Generate()
 //#include <stdio.h>
 #include <stdlib.h>
 #include <sstream> 
 #include <string>


 //---------------------------------------------------

 class MBinder;

  struct plist {
u_int8_t        pid;
struct plist            *next;
 };

  struct MBlist {
u_int8_t    portnum;
MBinder     *sendt;
struct MBlist   *next;
 };
 /*=========================================================================
 Define Macros
 =========================================================================*/
 #define DISABLED       0x00
 #define ENABLED            0x01


 /*=========================================================================
 Define Class ProtoType
 =========================================================================*/

 class NslObject {

 private: 

char        *name_;     /* Instance name */
const u_int32_t nodeID_;    /* Node Id */
const u_int32_t nodeType_;  /* Node type, eg: SWITCH, HOST.. */
u_int32_t   portid_;    /* port Id */
struct plist    *MPlist_;
   // static  KeyPair  NewKeyPair;


  public :
/* add for new structure engine*/
    u_int32_t       pdepth;
    struct MBlist   *BinderList;
    u_int8_t       PortNum;

//------------------------------------------------
    class KeyK {
    private :
         KeyPair Kk; 

    public:

      KeyK( KeyPair D1): Kk(D1)
      {}

     const  Key &GetPrivateKey() const
            {
                    return Kk.GetPrivateKey();
            }

     const  Key &GetPublicKey() const
            {
                    return Kk.GetPublicKey();
            }

       //KeyK  NewKeyPair ;


     };

     Key Get_PrivateKey(KeyK &K){
        return K.GetPrivateKey();
     }
      Key Get_PublicKey(KeyK &K){
        return K.GetPublicKey();
     }


    //static KeyPair  *KeyPtr1 ;//= new KeyPair;
    //------------------------------------------------
u_char          s_flowctl;      /* flow control for sending pkt */
u_char          r_flowctl;      /* flow control for receiving pkt */

MBinder     *recvtarget_;   /* to upper component */
MBinder     *sendtarget_;   /* to lower component */


NslObject(u_int32_t, u_int32_t, struct plist*, const char *);
NslObject();
virtual         ~NslObject();   
virtual int     init();
virtual int     recv(ePacket_ *); 
virtual int     send(ePacket_ *); 
virtual int     get(ePacket_ *, MBinder *);
virtual int     put(ePacket_ *, MBinder *);
virtual ePacket_    *put1(ePacket_ *, MBinder *);
virtual int     command(int argc, const char *argv[]); 
virtual int     Debugger();


inline  void    set_port(u_int32_t portid) { 
        portid_ = portid; 
    };   
inline u_int32_t get_port() const { 
        return(portid_); 
    }; 
inline struct plist* get_portls() const {
        return(MPlist_);
    };
inline const char * get_name() const {
        return(name_);
    }
inline u_int32_t get_nid() const {
        return(nodeID_);
    }
inline u_int32_t get_type() const {
        return(nodeType_);
    }
    //--------------------------------------------------------





  };

したがって、cpp ファイルのこの行の問題:

 Key OtmanK(NslObject::Get_PublicKey(NewKeyPair1));

このプロジェクトをコンパイルしようとすると、次のエラー メッセージが表示されました。

 object.cc:87: error: expected primary-expression before ‘)’ token

私を助けてください。

キークラスの直接呼び出しを試みたところ、次のような別の問題が発生しました。

        unsigned long int keyLength = 10;
        //KeyPair ADD(RSA::GenerateKeyPair(keyLength));
        NslObject::KeyK(RSA::GenerateKeyPair(keyLength));
        typedef NslObject::KeyK NewKeyPair1; 
        NewKeyPair1(RSA::GenerateKeyPair(keyLength));

        //NslObject::
        //Key OtmanK(NewKeyPair1.GetPublicKey());
        std::string message = "othman Alkilany";
        // NslObject::NewKeyPair.GetPrivateKey()
       std::string cypherText = RSA::Encrypt(  message, NewKeyPair1.GetPublicKey());

エラーメッセージは次のとおりです。

  error: expected primary-expression before ‘.’ token
4

1 に答える 1

3

あなたの問題はここの2行目にあると思います:

typedef NslObject::KeyK NewKeyPair1; 
NewKeyPair1(RSA::GenerateKeyPair(keyLength));

基本的に次のように記述した typedef を解決します。

NslObject::KeyK(RSA::GenerateKeyPair(keyLength));

したがって、この行の変数名が欠落していることは明らかです。

これを修正するには、変数/オブジェクトに次の名前を付けます。

NewKeyPair1 somekeypair(RSA::GenerateKeyPair(keyLength));

typedefしかし、とにかく誤用したと思いますか?あなたはそれに名前を付けようとしましたNewKeyPair1か?このようなもの:

NslObject::KeyK NewKeyPair1(RSA::GenerateKeyPair(keyLength));
于 2013-07-21T10:47:35.363 に答える