summary refs log tree commit diff
path: root/crypto/src/crmf/IEncryptedValuePadder.cs
blob: b620186dca359d86a1ce554d8b36ffc179dbd939 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Text;

namespace Org.BouncyCastle.Crmf
{
    /**
     * An encrypted value padder is used to make sure that prior to a value been
     * encrypted the data is padded to a standard length.
     */
    public interface EncryptedValuePadder
    {
        /**
         * Return a byte array of padded data.
         *
         * @param data the data to be padded.
         * @return a padded byte array containing data.
         */
        byte[] GetPaddedData(byte[] data);

        /**
         * Return a byte array of with padding removed.
         *
         * @param paddedData the data to be padded.
         * @return an array containing the original unpadded data.
         */
        byte[] GetUnpaddedData(byte[] paddedData);
    }
}