File: DESEngine.java

package info (click to toggle)
libjtds-java 1.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 11,248 kB
  • sloc: java: 35,541; xml: 363; makefile: 12
file content (119 lines) | stat: -rw-r--r-- 3,661 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// jTDS JDBC Driver for Microsoft SQL Server and Sybase
// Copyright (C) 2004 The jTDS Project
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

package net.sourceforge.jtds.util;

import java.security.GeneralSecurityException;
import java.security.spec.KeySpec;

import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;

/**
 * a class that provides a basic DES engine.
 * Modified by Matt Brinkley (mdb) ... mainly just removed depends on external classes.
 *
 * @author Matt Brinkley
 * @version $Id: DESEngine.java,v 1.3.6.1 2009-08-04 10:33:54 ickzon Exp $
 */
public class DESEngine
{
    protected static final int  BLOCK_SIZE = 8;
    private Cipher cf;

    /**
     * standard constructor.
     */
    public DESEngine() {
        // nothing
    }

    /**
     * mdb: convenient constructor
     */
    public DESEngine( boolean encrypting, byte[] key ) {
        init(encrypting, key);
    }

    /**
     * initialise a DES cipher.
     *
     * @param encrypting whether or not we are for encryption.
     * @param key the parameters required to set up the cipher.
     * @exception IllegalArgumentException if the params argument is
     * inappropriate.
     */
    public void init(boolean encrypting, byte[] key) {
        try {
            KeySpec ks;
            SecretKeyFactory kf;
            SecretKey ky;

            ks = new DESKeySpec(key);
            kf = SecretKeyFactory.getInstance("DES");
            ky = kf.generateSecret(ks);
            cf = Cipher.getInstance("DES/ECB/NoPadding");
            cf.init(
                    (encrypting ? Cipher.ENCRYPT_MODE : Cipher.DECRYPT_MODE), 
                    ky);
        } catch (GeneralSecurityException e) {
            throw new RuntimeException("Error initializing DESEngine", e);
        }
    }

    public String getAlgorithmName() {
        return "DES";
    }

    public int getBlockSize() {
        return BLOCK_SIZE;
    }

    public int processBlock(byte[] in, int inOff, byte[] out, int outOff) {
        // rsc: keep the error behaviour as it was with the previous non-JDK implementation:
        if (cf==null)
        {
            throw new IllegalStateException("DES engine not initialised");
        }

        if ((inOff + BLOCK_SIZE) > in.length)
        {
            //mdb: used to be DataLengthException
            throw new IllegalArgumentException("input buffer too short");
        }

        if ((outOff + BLOCK_SIZE) > out.length)
        {
            //mdb: used to be DataLengthException
            throw new IllegalArgumentException("output buffer too short");
        }

        try {
            int len = cf.doFinal(in, inOff, 8, out, outOff);
            return len;
        } catch (GeneralSecurityException e) {
            throw new RuntimeException("Error processing data block in DESEngine", e);
        }
    }

    public void reset() {
        // nothing
    }

}