• Home
  • Raw
  • Download

Lines Matching refs:ByteSource

98   const ByteSource* passphrase = *static_cast<const ByteSource**>(u);  in PasswordCallback()
330 ByteSource::ByteSource(ByteSource&& other) noexcept in SetFipsCrypto() function in node::crypto::ByteSource
337 ByteSource::~ByteSource() { in SetFipsCrypto()
341 ByteSource& ByteSource::operator=(ByteSource&& other) noexcept { in SetFipsCrypto()
352 std::unique_ptr<BackingStore> ByteSource::ReleaseToBackingStore() { in SetFipsCrypto()
369 Local<ArrayBuffer> ByteSource::ToArrayBuffer(Environment* env) { in SetFipsCrypto()
374 MaybeLocal<Uint8Array> ByteSource::ToBuffer(Environment* env) { in SetFipsCrypto()
379 ByteSource ByteSource::FromBIO(const BIOPointer& bio) { in SetFipsCrypto()
383 ByteSource::Builder out(bptr->length); in SetFipsCrypto()
388 ByteSource ByteSource::FromEncodedString(Environment* env, in SetFipsCrypto()
392 ByteSource out; in SetFipsCrypto()
395 ByteSource::Builder buf(length); in SetFipsCrypto()
404 ByteSource ByteSource::FromStringOrBuffer(Environment* env, in SetFipsCrypto()
410 ByteSource ByteSource::FromString(Environment* env, Local<String> str, in SetFipsCrypto()
415 ByteSource::Builder out(alloc_size); in SetFipsCrypto()
422 ByteSource ByteSource::FromBuffer(Local<Value> buffer, bool ntc) { in SetFipsCrypto()
427 ByteSource ByteSource::FromSecretKeyBytes( in SetFipsCrypto()
434 ByteSource::FromStringOrBuffer(env, value) : in SetFipsCrypto()
435 ByteSource::FromSymmetricKeyObjectHandle(value); in SetFipsCrypto()
438 ByteSource ByteSource::NullTerminatedCopy(Environment* env, in SetFipsCrypto()
444 ByteSource ByteSource::FromSymmetricKeyObjectHandle(Local<Value> handle) { in SetFipsCrypto()
452 ByteSource ByteSource::Allocated(void* data, size_t size) { in SetFipsCrypto()
453 return ByteSource(data, data, size); in SetFipsCrypto()
456 ByteSource ByteSource::Foreign(const void* data, size_t size) { in SetFipsCrypto()
457 return ByteSource(data, nullptr, size); in SetFipsCrypto()
680 bool SetRsaOaepLabel(const EVPKeyCtxPointer& ctx, const ByteSource& label) { in SetFipsCrypto()