FileDocCategorySizeDatePackage
XYZKey.javaAPI DocExample586Sat Jan 13 12:59:56 GMT 2001javasec.samples.ch09

XYZKey

public class XYZKey extends Object implements PrivateKey, PublicKey, Key

Fields Summary
int
rotValue
Constructors Summary
Methods Summary
public java.lang.StringgetAlgorithm()

        return "XYZ";
    
public byte[]getEncoded()

        byte b[] = new byte[4];
        b[3] = (byte) ((rotValue << 24) & 0xff);
        b[2] = (byte) ((rotValue << 16) & 0xff);
        b[1] = (byte) ((rotValue <<  8) & 0xff);
        b[0] = (byte) ((rotValue <<  0) & 0xff);
        return b;
    
public java.lang.StringgetFormat()

        return "XYZ Special Format";