FileDocCategorySizeDatePackage
PSource.javaAPI DocAndroid 1.5 API3484Wed May 06 22:41:02 BST 2009javax.crypto.spec

PSource

public class PSource extends Object
The source of the label L as specified in PKCS #1.
since
Android 1.0

Fields Summary
private String
pSrcName
Constructors Summary
private PSource()

protected PSource(String pSrcName)
Creates a new PSource instance with the specified source algorithm identifier.

param
pSrcName the source algorithm identifier.
throws
NullPointerException if pSrcName is null.

        if (pSrcName == null) {
            throw new NullPointerException(Messages.getString("crypto.42")); //$NON-NLS-1$
        }
        this.pSrcName = pSrcName;
    
Methods Summary
public java.lang.StringgetAlgorithm()
Returns the source algorithm identifier.

return
the source algorithm identifier.

        return pSrcName;