Lines Matching refs:secret
24 The key derivation functions generate a derived key from either a secret or
76 Specifies the secret key as an alphanumeric string (use if the key contains
84 the secret key is specified in hexadecimal form (two hex digits per byte).
99 Specifies a non-secret unique cryptographic salt as an alphanumeric string
150 Use TLS1-PRF to create a hex-encoded derived key from a secret key and seed:
152 openssl kdf -keylen 16 -kdfopt digest:SHA2-256 -kdfopt key:secret \
155 Use HKDF to create a hex-encoded derived key from a secret key, salt and info:
157 openssl kdf -keylen 10 -kdfopt digest:SHA2-256 -kdfopt key:secret \
160 Use SSKDF with KMAC to create a hex-encoded derived key from a secret key, salt and info:
166 Use SSKDF with HMAC to create a hex-encoded derived key from a secret key, salt and info:
172 Use SSKDF with Hash to create a hex-encoded derived key from a secret key, salt and info:
178 Use SSHKDF to create a hex-encoded derived key from a secret key, hash and session_id: