Uploaded image for project: 'WSS4J'
  1. WSS4J
  2. WSS-300

SubjectKeyIidentifier (SKI) incorrectly calculated for 2048-bit RSA key

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.5.11, 1.6.1
    • 1.5.12, 1.6.2
    • WSS4J Core
    • None
    • Tomcat 5, Solaris 10, Java 1.4 and Tomcat 6, Win XP, Java 6

    Description

      The crypto function to get the SubjectKeyIdentifier from an X509Certificate has incorrect hard-coded assumptions about the size of the encoded information, meaning the calculation of the SKI from a 2048-bit RSA key is incorrect.

      The method org.apache.ws.security.components.crypto.CryptoBase.getSKIBytesFromCert does not parse the DER encoding of information, but just tries to pick out the piece of the byte array that corresponds to the content of interest. However, that approach fails because the DER encoding is variable length, depending on the size of the data being encoded. e.g. a 1024-bit key in a DER BIT STRING takes 4 bytes header + 140 bytes data to encode, whereas a 2048-bit key takes 5 bytes header + 270 bytes data; the header is one byte longer for the larger key, so the data starts at a different point in the array.

      To fix this, the DER data structures should be properly processed, reading the DER header bytes to determine the length of each data element (that also allows the generalization of handling any X.509 encoded public key, rather than just RSA keys as currently coded).

      Attached is a suggested patch (against WSS4J 1.6.1) that implements this idea: it processes the SubjectPublicKeyInfo and SubjectKeyIdentifier DER-encoded byte arrays according to their ASN.1 definitions from RFC 3280/5280 to pick out the desired data bytes.

      Attachments

        1. X509SubjectPublicKeyInfo.java
          3 kB
          Linton Miller
        2. X509SubjectPublicKeyInfo.java
          3 kB
          Linton Miller
        3. test.cypto.properties
          0.3 kB
          Linton Miller
        4. rsa2048.jks
          0.9 kB
          Linton Miller
        5. rsa2048.jks
          0.9 kB
          Linton Miller
        6. DERDecoder.java
          7 kB
          Linton Miller
        7. CryptoBase.java.patch
          2 kB
          Linton Miller
        8. correct.xml
          2 kB
          Linton Miller
        9. client.wsdd
          0.9 kB
          Linton Miller
        10. broken.xml
          2 kB
          Linton Miller

        Activity

          People

            coheigea Colm O hEigeartaigh
            linton Linton Miller
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: