Searched defs:allows (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/page/
H A DContentSecurityPolicy.cpp404 bool allows(const KURL& url) function in class:WebCore::CSPDirective
508 return !m_scriptSrc || m_scriptSrc->allows(url);
513 return !m_objectSrc || m_objectSrc->allows(url);
518 return !m_imgSrc || m_imgSrc->allows(url);
523 return !m_styleSrc || m_styleSrc->allows(url);
528 return !m_fontSrc || m_fontSrc->allows(url);
533 return !m_mediaSrc || m_mediaSrc->allows(url);
/external/dropbear/libtomcrypt/
H A Dcrypt.tex168 directly (\textit{e.g. sha256\_process()}) this descriptor interface allows the developer to customize their
405 or use one of the provided chaining modes. All of the ciphers are written as ECB interfaces since it allows the rest of
409 All ciphers store their scheduled keys in a single data type called \textit{symmetric\_key}. This allows all ciphers to
411 allocation, and allows you to allocate a fixed sized buffer for storing scheduled keys. All ciphers must provide six visible
428 practices you should always call the respective XXX\_done() function. This allows for quicker porting to applications with
553 The number of rounds of most ciphers is not an option you can change. Only RC5 allows you to change the number of
776 This mode is very weak since it allows people to swap blocks and perform replay attacks if the same key is used more
831 accomplish this by buffering the data required to complete a block. This allows you to encrypt or decrypt any size
1210 through the OMAC function. The function \textit{eax\_decrypt} decrypts \textit{ct}, and stores it in \textit{pt}. This also allows
1217 the eax\_init() function allows yo
[all...]

Completed in 80 milliseconds