| /freebsd-14.2/crypto/openssl/doc/man7/ |
| H A D | EVP_KDF-TLS1_PRF.pod | 5 EVP_KDF-TLS1_PRF - The TLS1 PRF EVP_KDF implementation 9 Support for computing the B<TLS1> PRF through the B<EVP_KDF> API. 11 The EVP_KDF-TLS1_PRF algorithm implements the PRF used by TLS versions up to 18 "TLS1-PRF" is the name for this implementation; it 34 associated with the TLS PRF. 36 PRF algorithm using both B<MD5> and B<SHA1> as used in TLS 1.0 and 1.1. 40 This parameter sets the secret value of the TLS PRF. 47 this should be more than enough for any normal use of the TLS PRF. 53 A context for the TLS PRF can be obtained by calling: 55 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "TLS1-PRF", NULL); [all …]
|
| H A D | life_cycle-kdf.pod | 16 This state represents the KDF/PRF before it has been allocated. It is the 21 This state represents the KDF/PRF after it has been allocated. 25 This state represents the KDF/PRF when it is set up and capable of generating 30 This state is entered when the KDF/PRF is freed. It is the terminal state 37 The usual life-cycle of a KDF/PRF is illustrated:
|
| H A D | OSSL_PROVIDER-default.pod | 136 =item TLS1-PRF, see L<EVP_KDF-TLS1_PRF(7)>
|
| H A D | OSSL_PROVIDER-FIPS.pod | 97 =item TLS1-PRF, see L<EVP_KDF-TLS1_PRF(7)>
|
| /freebsd-14.2/sys/contrib/dev/athk/ |
| H A D | dfs_pattern_detector.c | 40 #define PRF2PRI(PRF) ((1000000 + PRF / 2) / PRF) argument 46 #define ETSI_PATTERN(ID, WMIN, WMAX, PMIN, PMAX, PRF, PPB, CHIRP) \ argument 50 (PRF2PRI(PMIN) * PRF + PRI_TOLERANCE), PRF, PPB * PRF, \ 71 #define FCC_PATTERN(ID, WMIN, WMAX, PMIN, PMAX, PRF, PPB, CHIRP) \ argument 75 PMAX * PRF + PRI_TOLERANCE, PRF, PPB * PRF, \ 103 #define JP_PATTERN(ID, WMIN, WMAX, PMIN, PMAX, PRF, PPB, RATE, CHIRP) \ argument 107 PMAX * PRF + PRI_TOLERANCE, PRF, PPB * PRF, \
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MCA/Stages/ |
| H A D | InOrderIssueStage.cpp | 49 : STI(STI), PRF(PRF), RM(STI.getSchedModel()), CB(CB), LSU(LSU), in InOrderIssueStage() 103 static unsigned checkRegisterHazard(const RegisterFile &PRF, in checkRegisterHazard() argument 119 if (unsigned Cycles = checkRegisterHazard(PRF, STI, IR)) { in canExecute() 163 PRF.addRegisterRead(RS, STI); in addRegisterReadWrite() 166 PRF.addRegisterWrite(WriteRef(SourceIndex, &WS), UsedRegs); in addRegisterReadWrite() 228 addRegisterReadWrite(PRF, IS, SourceIndex, STI, UsedRegs); in tryIssue() 262 PRF.onInstructionExecuted(&IS); in tryIssue() 297 PRF.onInstructionExecuted(&IS); in updateIssuedInst() 342 PRF.removeRegisterWrite(WS, FreedRegs); in retireInstruction() 385 PRF.cycleStart(); in cycleStart() [all …]
|
| H A D | DispatchStage.cpp | 33 CarryOver(0U), STI(Subtarget), RCU(R), PRF(F) { in DispatchStage() 51 const unsigned RegisterMask = PRF.isAvailable(RegDefs); in checkPRF() 98 if (PRF.tryEliminateMoveOrSwap(IS.getDefs(), IS.getUses())) in dispatch() 112 PRF.addRegisterRead(RS, STI); in dispatch() 118 SmallVector<unsigned, 4> RegisterFiles(PRF.getNumRegisterFiles()); in dispatch() 120 PRF.addRegisterWrite(WriteRef(IR.getSourceIndex(), &WS), RegisterFiles); in dispatch() 147 SmallVector<unsigned, 8> RegisterFiles(PRF.getNumRegisterFiles(), 0U); in cycleStart() 181 PRF.dump(); in dump()
|
| H A D | RetireStage.cpp | 26 PRF.cycleStart(); in cycleStart() 45 PRF.cycleEnd(); in cycleEnd() 52 PRF.onInstructionExecuted(&IS); in execute() 62 llvm::SmallVector<unsigned, 4> FreedRegs(PRF.getNumRegisterFiles()); in notifyInstructionRetired() 70 PRF.removeRegisterWrite(WS, FreedRegs); in notifyInstructionRetired()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MCA/ |
| H A D | Context.cpp | 41 auto PRF = std::make_unique<RegisterFile>(SM, MRI, Opts.RegisterFileSize); in createDefaultPipeline() local 49 std::make_unique<DispatchStage>(STI, MRI, Opts.DispatchWidth, *RCU, *PRF); in createDefaultPipeline() 52 auto Retire = std::make_unique<RetireStage>(*RCU, *PRF, *LSU); in createDefaultPipeline() 56 addHardwareUnit(std::move(PRF)); in createDefaultPipeline() 76 auto PRF = std::make_unique<RegisterFile>(SM, MRI, Opts.RegisterFileSize); in createInOrderPipeline() local 82 auto InOrderIssue = std::make_unique<InOrderIssueStage>(STI, *PRF, CB, *LSU); in createInOrderPipeline() 86 addHardwareUnit(std::move(PRF)); in createInOrderPipeline()
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | EVP_PKEY_CTX_set_tls1_prf_md.pod | 7 TLS PRF key derivation algorithm 21 The B<EVP_PKEY_TLS1_PRF> algorithm implements the PRF key derivation function for 26 TLS PRF. EVP_md5_sha1() is treated as a special case which uses the PRF 29 EVP_PKEY_CTX_set_tls1_prf_secret() sets the secret value of the TLS PRF 38 The TLS PRF also supports string based control operations using 49 A context for the TLS PRF can be obtained by calling: 57 be more than enough for any normal use of the TLS PRF. 59 The output length of the PRF is specified by the length parameter in the 61 the buffer to B<NULL> is not meaningful for the TLS PRF. 63 Optimised versions of the TLS PRF can be implemented in an ENGINE.
|
| /freebsd-14.2/crypto/openssl/test/recipes/30-test_evp_data/ |
| H A D | evppkey_kdf_tls1_prf.txt | 14 Title = TLS1 PRF tests (from NIST test vectors) 16 PKEYKDF = TLS1-PRF 24 PKEYKDF = TLS1-PRF 33 PKEYKDF = TLS1-PRF 41 PKEYKDF = TLS1-PRF 49 PKEYKDF = TLS1-PRF 67 PKEYKDF = TLS1-PRF
|
| H A D | evpkdf_tls11_prf.txt | 14 Title = TLS1 PRF tests (from NIST test vectors) 16 KDF = TLS1-PRF 24 KDF = TLS1-PRF 33 KDF = TLS1-PRF
|
| H A D | evpkdf_tls12_prf.txt | 14 Title = TLS12 PRF tests (from NIST test vectors) 16 KDF = TLS1-PRF 24 KDF = TLS1-PRF 42 KDF = TLS1-PRF
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MCA/Stages/ |
| H A D | RetireStage.h | 31 RegisterFile &PRF; variable 39 : RCU(R), PRF(F), LSU(LS) {} in RetireStage()
|
| H A D | InOrderIssueStage.h | 56 RegisterFile &PRF; variable 115 InOrderIssueStage(const MCSubtargetInfo &STI, RegisterFile &PRF,
|
| H A D | DispatchStage.h | 56 RegisterFile &PRF; variable
|
| /freebsd-14.2/crypto/openssl/test/recipes/80-test_tsa_data/ |
| H A D | user-trust-ca.pem | 26 8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR
|
| /freebsd-14.2/crypto/openssl/doc/man1/ |
| H A D | openssl-kdf.pod.in | 143 The supported algorithms names include TLS1-PRF, HKDF, SSKDF, PBKDF2, 150 Use TLS1-PRF to create a hex-encoded derived key from a secret key and seed: 153 -kdfopt seed:seed TLS1-PRF
|
| H A D | openssl-pkcs8.pod.in | 127 This option sets the PRF algorithm to use with PKCS#5 v2.0. A typical value 131 Some implementations may not support custom PRF algorithms and may require 220 mode and B<hmacWithSHA512> PRF:
|
| H A D | openssl-pkeyutl.pod.in | 183 at present B<TLS1-PRF> and B<HKDF>. 406 Hexdump 48 bytes of TLS1 PRF using digest B<SHA256> and shared secret and 409 openssl pkeyutl -kdf TLS1-PRF -kdflen 48 -pkeyopt md:SHA256 \
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MCA/ |
| H A D | Instruction.h | 311 void setPRF(unsigned PRF) { PRFID = PRF; } in setPRF() argument
|
| /freebsd-14.2/secure/caroot/trusted/ |
| H A D | USERTrust_RSA_Certification_Authority.pem | 129 8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | wordprocessors | 593 # skip dBase printer form T6.PRF with misidentified gallery 596 # template/t6/with_data/T6.PRF
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedA64FX.td | 2433 def : InstRW<[A64FXWrite_PRF], (instregex "^PRF._PR")>; 2438 def : InstRW<[A64FXWrite_PRF_W_RZ], (instregex "^PRF._S_[^P]")>; 2443 def : InstRW<[A64FXWrite_PRF_W_ZI], (instregex "^PRF._S_PZI")>; 2448 def : InstRW<[A64FXWrite_PRF_D_RZ], (instregex "^PRF._D_[^P]")>; 2453 def : InstRW<[A64FXWrite_PRF_D_ZI], (instregex "^PRF._D_PZI")>;
|
| /freebsd-14.2/contrib/bearssl/src/ssl/ |
| H A D | ssl_hs_common.t0 | 775 \ -- PRF for TLS-1.2: 780 \ PRF (with TLS 1.2), be sure to check the suites_sha384[] array defined 891 \ Get identifier for the PRF (TLS 1.2).
|