예제 #1
0
Key_Length_Specification Transform_Filter::key_spec() const
   {
   if(Keyed_Transform* keyed = dynamic_cast<Keyed_Transform*>(m_transform.get()))
      return keyed->key_spec();
   return Key_Length_Specification(0);
   }
예제 #2
0
파일: rc4.cpp 프로젝트: webmaster128/botan
Key_Length_Specification RC4::key_spec() const
   {
   return Key_Length_Specification(1, 256);
   }