Home | History | Annotate | Download | only in libtomcrypt

Lines Matching defs:Decoding

3088 \subsection{PKCS \#1 v1.5 Decoding}
3145 \subsection{OAEP Decoding}
3200 \subsection{PSS Decoding}
3220 It's important to use the same \textit{saltlen} and hash for both encoding and decoding as otherwise the procedure will not work.
4174 format, and two functions have been dedicated to encoding and decoding the format.
4274 \subsubsection{SEQUENCE Decoding}
4278 Decoding a SEQUENCE is similar to encoding. You set up an array of \textbf{ltc\_asn1\_list} where in this case the \textit{size} member is the maximum size
4279 (in certain cases). For types such as IA5 STRING, BIT STRING, OCTET STRING (etc) the \textit{size} field is updated after successful decoding to reflect how many
4316 For small or simple sequences an encoding or decoding can be performed with one of the following two functions.
4382 \subsubsection{SET Decoding}
4419 \subsubsection{SET OF Decoding}
4420 Since the decoding of a \textit{SET OF} object is unambiguous it can be decoded with der\_decode\_sequence().
4681 all required memory for the decoding. It stores the number of octets read back into \textit{inlen}.
4686 An invalid decoding will terminate the process, and free the allocated memory automatically.
4692 \subsubsection{Sample Decoding}
4717 printf("Error decoding: %s\n", error_to_string(err));
4849 \mysection{Base64 Encoding and Decoding}