1# 2# Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved. 3# 4# Licensed under the Apache License 2.0 (the "License"). You may not use 5# this file except in compliance with the License. You can obtain a copy 6# in the file LICENSE in the source distribution or at 7# https://www.openssl.org/source/license.html 8 9# Tests start with one of these keywords 10# Cipher Decrypt Derive Digest Encoding KDF MAC PBE 11# PrivPubKeyPair Sign Verify VerifyRecover 12# and continue until a blank line. Lines starting with a pound sign are ignored. 13 14Title = id-scrypt tests (from draft-josefsson-id-scrypt-kdf-03 and others) 15 16PKEYKDF = scrypt 17Ctrl.pass = pass: 18Ctrl.salt = salt: 19Ctrl.N = N:16 20Ctrl.r = r:1 21Ctrl.p = p:1 22Output = 77d6576238657b203b19ca42c18a0497f16b4844e3074ae8dfdffa3fede21442fcd0069ded0948f8326a753a0fc81f17e8d3e0fb2e0d3628cf35e20c38d18906 23 24PKEYKDF = scrypt 25Ctrl.pass = pass:password 26Ctrl.salt = salt:NaCl 27Ctrl.N = N:1024 28Ctrl.r = r:8 29Ctrl.p = p:16 30Output = fdbabe1c9d3472007856e7190d01e9fe7c6ad7cbc8237830e77376634b3731622eaf30d92e22a3886ff109279d9830dac727afb94a83ee6d8360cbdfa2cc0640 31 32PKEYKDF = scrypt 33Ctrl.hexpass = hexpass:70617373776f7264 34Ctrl.salt = salt:NaCl 35Ctrl.N = N:1024 36Ctrl.r = r:8 37Ctrl.p = p:16 38Output = fdbabe1c9d3472007856e7190d01e9fe7c6ad7cbc8237830e77376634b3731622eaf30d92e22a3886ff109279d9830dac727afb94a83ee6d8360cbdfa2cc0640 39 40PKEYKDF = scrypt 41Ctrl.pass = pass:password 42Ctrl.hexsalt = hexsalt:4e61436c 43Ctrl.N = N:1024 44Ctrl.r = r:8 45Ctrl.p = p:16 46Output = fdbabe1c9d3472007856e7190d01e9fe7c6ad7cbc8237830e77376634b3731622eaf30d92e22a3886ff109279d9830dac727afb94a83ee6d8360cbdfa2cc0640 47 48PKEYKDF = scrypt 49Ctrl.pass = pass:pleaseletmein 50Ctrl.salt = salt:SodiumChloride 51Ctrl.N = N:16384 52Ctrl.r = r:8 53Ctrl.p = p:1 54Output = 7023bdcb3afd7348461c06cd81fd38ebfda8fbba904f8e3ea9b543f6545da1f2d5432955613f0fcf62d49705242a9af9e61e85dc0d651e40dfcf017b45575887 55 56# Out of memory 57PKEYKDF = scrypt 58Ctrl.pass = pass:pleaseletmein 59Ctrl.salt = salt:SodiumChloride 60Ctrl.N = n:2097152 61Ctrl.r = r:8 62Ctrl.p = p:1 63Result = KDF_DERIVE_ERROR 64