Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > by-pkgid > e99b5bddb2f5ee474a4ad74ee66a3511 > files > 36

ocaml-cryptokit-devel-1.3-2mdv2010.0.x86_64.rpm

<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="Start" href="index.html">
<link rel="Up" href="Cryptokit.Padding.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of class methods" rel=Appendix href="index_methods.html">
<link title="Index of classes" rel=Appendix href="index_classes.html">
<link title="Index of class types" rel=Appendix href="index_class_types.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Cryptokit" rel="Chapter" href="Cryptokit.html"><title>Cryptokit.Padding.scheme</title>
</head>
<body>
<div class="navbar">&nbsp;<a href="Cryptokit.Padding.html">Up</a>
&nbsp;</div>
<center><h1>Class type <a href="type_Cryptokit.Padding.scheme.html">Cryptokit.Padding.scheme</a></h1></center>
<br>
<pre><span class="keyword">class type</span> <a name="TYPEscheme"></a>scheme = <code class="code">object</code> <a href="Cryptokit.Padding.scheme.html">..</a> <code class="code">end</code></pre>Generic interface of a padding scheme.<br>
<hr width="100%">
<pre><span class="keyword">method</span> <a name="METHODpad"></a>pad : <code class="type">string -> int -> unit</code></pre><div class="info">
<code class="code">pad str used</code> is called with a buffer string <code class="code">str</code>
            containing valid input data at positions <code class="code">0, ..., used-1</code>.
            The <code class="code">pad</code> method must write padding characters in positions
            <code class="code">used</code> to <code class="code">String.length str - 1</code>.  It is guaranteed that
            <code class="code">used &lt; String.length str</code>, so that at least one character of
            padding must be added.  The padding scheme must be unambiguous
            in the following sense: from <code class="code">buf</code> after padding, it must be
            possible to determine <code class="code">used</code> unambiguously.  (This is what
            method <a href="Cryptokit.Padding.scheme.html#METHODstrip"><code class="code">Cryptokit.Padding.scheme.strip</code></a> does.)<br>
</div>
<pre><span class="keyword">method</span> <a name="METHODstrip"></a>strip : <code class="type">string -> int</code></pre><div class="info">
This is the converse of the <code class="code">pad</code> operation: from a padded
            string <code class="code">buf</code> as built by method <code class="code">pad</code>, <code class="code">strip buf</code> determines
            and returns the starting position of the padding data,
            or equivalently the length of valid, non-padded input data
            in <code class="code">buf</code>.  This method must raise <code class="code">Error Bad_padding</code> if
            <code class="code">buf</code> does not have the format of a padded block as produced
            by <code class="code">pad</code>.<br>
</div>
</body></html>