Skip to content

Fixes for integer truncation - #153

Open
ifranzki wants to merge 2 commits into
opencryptoki:masterfrom
ifranzki:cmac_fixes
Open

Fixes for integer truncation#153
ifranzki wants to merge 2 commits into
opencryptoki:masterfrom
ifranzki:cmac_fixes

Fix s390_ccm() to receive mac_length and nonce_length as unsigned int…

0dce5d5
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 1, 2026 in 8m 20s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #153 Fixes for integer truncation.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Compiler ENV OS State
445.1 linux-s390x-gcc gcc CONFIG_OPTS="--enable-fips --enable-internal-tests" Linux passed
445.2 linux-s390x-clang clang CONFIG_OPTS="--enable-fips --enable-internal-tests" Linux passed
445.3 linux-s390x-sanitizer gcc CONFIG_OPTS="--enable-fips --enable-internal-tests --enable-sanitizer" Linux passed

Build Configuration

Build Option Setting
Language C
Operating System Linux (Jammy)
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "jobs": {
    "include": [
      {
        "name": "linux-s390x-gcc",
        "os": "linux",
        "arch": "s390x",
        "compiler": "gcc",
        "env": [
          {
            "CONFIG_OPTS": "\"--enable-fips --enable-internal-tests\""
          }
        ]
      },
      {
        "name": "linux-s390x-clang",
        "os": "linux",
        "arch": "s390x",
        "compiler": "clang",
        "env": [
          {
            "CONFIG_OPTS": "\"--enable-fips --enable-internal-tests\""
          }
        ]
      },
      {
        "name": "linux-s390x-sanitizer",
        "os": "linux",
        "arch": "s390x",
        "compiler": "gcc",
        "env": [
          {
            "CONFIG_OPTS": "\"--enable-fips --enable-internal-tests --enable-sanitizer\""
          }
        ]
      }
    ]
  },
  "before_script": [
    "./bootstrap.sh 2> >(tee)"
  ],
  "script": [
    "./configure $CONFIG_OPTS 2> >(tee) && make check V=0 2> >(tee)",
    "cat test/test-suite.log"
  ]
}