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

SignerInputBuffer.java « tls « crypto « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8293135f4d572f7a3c9836a4427553d27a6df6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.bouncycastle.crypto.tls;

import java.io.ByteArrayOutputStream;

import org.bouncycastle.crypto.Signer;

class SignerInputBuffer extends ByteArrayOutputStream
{
    void updateSigner(Signer s)
    {
        s.update(this.buf, 0, count);
    }
}