本文整理汇总了C++中OTPassword::setPassword_uint8方法的典型用法代码示例。如果您正苦于以下问题:C++ OTPassword::setPassword_uint8方法的具体用法?C++ OTPassword::setPassword_uint8怎么用?C++ OTPassword::setPassword_uint8使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OTPassword
的用法示例。
在下文中一共展示了OTPassword::setPassword_uint8方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GetPassword
// The password will be stored here by the Java dialog, so that the C callback can retrieve it and pass it to OpenSSL
//
bool OTCaller::GetPassword(OTPassword & theOutput) const // Get the password....
{
OTLog::Output(0, "OTCaller::GetPassword: FYI, returning password after invoking a (probably Java) password dialog.\n");
theOutput.setPassword_uint8(m_Password.getPassword_uint8(), m_Password.getPasswordSize());
return true;
}