public class PKCS1_V1_5 extends BasePad
A padding algorithm implementation of the EME-PKCS1-V1.5 encoding/decoding
algorithm as described in section 7.2 of RFC-3447. This is effectively an
Adapter over an instance of EME_PKCS1_V1_5
initialised with
the RSA public shared modulus length (in bytes).
References:
EME_PKCS1_V1_5
Modifier and Type | Method and Description |
---|---|
byte[] |
pad(byte[] in,
int offset,
int length)
Returns the byte sequence that should be appended to the designated input.
|
boolean |
selfTest()
A basic symmetric pad/unpad test.
|
void |
setup()
If any additional checks or resource setup must be done by the
subclass, then this is the hook for it.
|
int |
unpad(byte[] in,
int offset,
int length)
Returns the number of bytes to discard from a designated input buffer.
|
public void setup()
BasePad
If any additional checks or resource setup must be done by the
subclass, then this is the hook for it. This method will be called before
the BasePad.init(int)
method returns.
public byte[] pad(byte[] in, int offset, int length)
IPad
pad
in interface IPad
pad
in class BasePad
in
- the input buffer containing the bytes to pad.offset
- the starting index of meaningful data in in.length
- the number of meaningful bytes in in.public int unpad(byte[] in, int offset, int length) throws WrongPaddingException
IPad
unpad
in interface IPad
unpad
in class BasePad
in
- the input buffer containing the bytes to unpad.offset
- the starting index of meaningful data in in.length
- the number of meaningful bytes in in.WrongPaddingException
- if the data is not terminated with the
expected padding bytes.Copyright © 2025. All rights reserved.