2006/11/24, Mikhail Loenko <[EMAIL PROTECTED]>:
Shoud we change that in org.apache.harmony namespace? These don't
affect JAPI reports.
I do not see any reason for this.
And did not change org.apache classes in awt module.

SY, Alexey

org/apache/harmony/auth/internal/kerberos/v5/EncryptedData.java:

        IvParameterSpec initCipherState;
        switch (etype) {
            case DES_CBC_CRC:
                offset = 12;// confounder(8)+CRC-32 checksum(4)
                // copy of original key
                initCipherState = new IvParameterSpec(key.getEncoded());
                break;
            case DES_CBC_MD4:
            case DES_CBC_MD5:
                offset = 24;// confounder(8)+ MD4/5 checksum(16)
                // all-zero
                initCipherState = new IvParameterSpec(new byte[] { 0,
0, 0, 0, 0, 0, 0, 0, });
                break;
            default:
                throw new RuntimeException();//FIXME not implemented yet

Thanks,
Mikhail

2006/11/23, Tim Ellison <[EMAIL PROTECTED]>:
> Stefano Mazzocchi wrote:
> > I propose that we change all those exception into
> > o.a.h.luni.util.NotImplementeException so that JAPI can pick them up and
> > show us real results and we do it sooner rather than later.
>
> Agreed.  I don't like stubs (unless required for compiling other stuff),
> but I recognize that some people prefer to define all the stubs then go
> back and fill them in.
>
> I agree that we should mark them as throwing the runtime exception
> org.apache.harmony.luni.util.NotImplementedException
>
> Regards,
> Tim
>
> --
>
> Tim Ellison ([EMAIL PROTECTED])
> IBM Java technology centre, UK.
>

Reply via email to