Beispiel #1
0
void SHAKE_128_Cipher::seek(uint64_t)
   {
   throw Not_Implemented("SHAKE_128_Cipher::seek");
   }
Beispiel #2
0
void SingleResponse::encode_into(class DER_Encoder&) const
   {
   throw Not_Implemented("SingleResponse::encode_into");
   }
void RC4::seek(uint64_t)
   {
   throw Not_Implemented("RC4 does not support seeking");
   }
Beispiel #4
0
std::shared_ptr<const X509_Certificate>
Certificate_Store_MacOS::find_cert_by_raw_subject_dn_sha256(const std::vector<uint8_t>& subject_hash) const
   {
   BOTAN_UNUSED(subject_hash);
   throw Not_Implemented("Certificate_Store_MacOS::find_cert_by_raw_subject_dn_sha256");
   }
Beispiel #5
0
Cert_Pointer Certificate_Store_Windows::find_cert_by_raw_subject_dn_sha256(
   const std::vector<uint8_t>& subject_hash) const
   {
   BOTAN_UNUSED(subject_hash);
   throw Not_Implemented("Certificate_Store_Windows::find_cert_by_raw_subject_dn_sha256");
   }
Beispiel #6
0
void GeneralSubtree::encode_into(class DER_Encoder&) const
   {
   throw Not_Implemented("General Subtree encoding");
   }
Beispiel #7
0
void Salsa20::seek(uint64_t)
   {
   throw Not_Implemented("Salsa20::seek");
   }
void Not_Implemented(const char* function,const char* file,unsigned int line,const char* message)
{
    Not_Implemented(function,file,line,std::string(message));
}
//#####################################################################
// Function Not_Implemented
//#####################################################################
void Not_Implemented(const char* function,const char* file,unsigned int line)
{
    Not_Implemented(function,file,line,"Something");
}