diff --git a/generated_api_shadow/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha/BUILD b/generated_api_shadow/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha/BUILD deleted file mode 100644 index e7414acdda467..0000000000000 --- a/generated_api_shadow/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha/BUILD +++ /dev/null @@ -1,12 +0,0 @@ -load("@envoy_api//bazel:api_build_system.bzl", "api_proto_package") - -licenses(["notice"]) # Apache 2 - -# DO NOT EDIT. This file is generated by tools/proto_format/proto_sync.py. - -api_proto_package( - deps = [ - "//envoy/config/core/v3:pkg", - "@com_github_cncf_udpa//udpa/annotations:pkg", - ], -) diff --git a/generated_api_shadow/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha/cryptomb.proto b/generated_api_shadow/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha/cryptomb.proto deleted file mode 100644 index aa2d8cd2fb823..0000000000000 --- a/generated_api_shadow/contrib/envoy/extensions/private_key_providers/cryptomb/v3alpha/cryptomb.proto +++ /dev/null @@ -1,44 +0,0 @@ -syntax = "proto3"; - -package envoy.extensions.private_key_providers.cryptomb.v3alpha; - -import "envoy/config/core/v3/base.proto"; - -import "google/protobuf/duration.proto"; - -import "udpa/annotations/sensitive.proto"; -import "udpa/annotations/status.proto"; -import "validate/validate.proto"; - -option java_package = "io.envoyproxy.envoy.extensions.private_key_providers.cryptomb.v3alpha"; -option java_outer_classname = "CryptombProto"; -option java_multiple_files = true; -option (udpa.annotations.file_status).package_version_status = ACTIVE; - -// [#protodoc-title: CryptoMb private key provider] -// [#extension: envoy.tls.key_providers.cryptomb] - -// A CryptoMbPrivateKeyMethodConfig message specifies how the CryptoMb private -// key provider is configured. The private key provider provides `SIMD` -// processing for RSA sign and decrypt operations (ECDSA signing uses regular -// BoringSSL functions). The provider works by gathering the operations into a -// worker-thread specific queue, and processing the queue using `ipp-crypto` -// library when the queue is full or when a timer expires. -// [#extension-category: envoy.tls.key_providers] -message CryptoMbPrivateKeyMethodConfig { - // Private key to use in the private key provider. If set to inline_bytes or - // inline_string, the value needs to be the private key in PEM format. - config.core.v3.DataSource private_key = 1 [(udpa.annotations.sensitive) = true]; - - // How long to wait until the per-thread processing queue should be - // processed. If the processing queue gets full (eight sign or decrypt - // requests are received) it is processed immediately. However, if the - // queue is not filled before the delay has expired, the requests - // already in the queue are processed, even if the queue is not full. - // In effect, this value controls the balance between latency and - // throughput. The duration needs to be set to a non-zero value. - google.protobuf.Duration poll_delay = 2 [(validate.rules).duration = { - required: true - gt {} - }]; -}