Public Member Functions | |
SharedSecret (DDS::OctetSeq challenge1, DDS::OctetSeq challenge2, DDS::OctetSeq sharedSecret) | |
DDS::OctetSeq * | challenge1 () |
DDS::OctetSeq * | challenge2 () |
DDS::OctetSeq * | sharedSecret () |
Public Attributes | |
DDS::OctetSeq | challenge1_ |
DDS::OctetSeq | challenge2_ |
DDS::OctetSeq | shared_secret_ |
Definition at line 56 of file AuthenticationBuiltInImpl.cpp.
OpenDDS::Security::SharedSecret::SharedSecret | ( | DDS::OctetSeq | challenge1, | |
DDS::OctetSeq | challenge2, | |||
DDS::OctetSeq | sharedSecret | |||
) | [inline] |
Definition at line 58 of file AuthenticationBuiltInImpl.cpp.
00061 : challenge1_(challenge1) 00062 , challenge2_(challenge2) 00063 , shared_secret_(sharedSecret) 00064 {}
DDS::OctetSeq* OpenDDS::Security::SharedSecret::challenge1 | ( | ) | [inline] |
Definition at line 66 of file AuthenticationBuiltInImpl.cpp.
References challenge1_.
00066 { return new DDS::OctetSeq(challenge1_); }
DDS::OctetSeq* OpenDDS::Security::SharedSecret::challenge2 | ( | ) | [inline] |
Definition at line 67 of file AuthenticationBuiltInImpl.cpp.
References challenge2_.
00067 { return new DDS::OctetSeq(challenge2_); }
DDS::OctetSeq* OpenDDS::Security::SharedSecret::sharedSecret | ( | ) | [inline] |
Definition at line 68 of file AuthenticationBuiltInImpl.cpp.
References shared_secret_.
00068 { return new DDS::OctetSeq(shared_secret_); }
Definition at line 70 of file AuthenticationBuiltInImpl.cpp.
Referenced by challenge1().
Definition at line 70 of file AuthenticationBuiltInImpl.cpp.
Referenced by challenge2().
Definition at line 70 of file AuthenticationBuiltInImpl.cpp.
Referenced by sharedSecret().