Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AESWrapPadEngine.java « engines « crypto « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03170ec65d3c7da4fd403ba72fb035092f5592b4 (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.crypto.engines;

public class AESWrapPadEngine
    extends RFC5649WrapEngine
{
    public AESWrapPadEngine()
    {
        super(new AESEngine());
    }
}