class documentation

class AsymmetricAlgorithm(Enum): (source)

View In Hierarchy

Supported asymmetric algorithms.

Constant __PROTO_DESCRIPTOR__ Protobuf enum descriptor from the registry.
Constant __PROTO_FULL_NAME__ Fully qualified protobuf enum name.
Constant ASYMMETRIC_ALGORITHM_UNSPECIFIED Undocumented
Constant ECDSA_NIST_P256_SHA_256 ECDSA signature with NIST P-256 curve and SHA-256
Constant ECDSA_NIST_P384_SHA_384 ECDSA signature with NIST P-384 curve and SHA-384
Constant RSA_4096_ENC_OAEP_SHA_256 RSA encryption with RSA-4096 key, OAEP padding and SHA-256.

Inherited from Enum:

Class Method get_descriptor Return the protobuf EnumDescriptor for this enum.
Constant __PB2_DESCRIPTOR__ Alias for code that expects a protobuf descriptor.
Constant __REGISTRY__ Registry for the enum and its descriptor.
Class Method _missing_ Represent unknown open-enum numbers without losing their value.
__PROTO_DESCRIPTOR__ = (source)

Protobuf enum descriptor from the registry.

Value
REGISTRY.enum_descriptor('nebius.kms.v1.AsymmetricAlgorithm')
__PROTO_FULL_NAME__: str = (source)

Fully qualified protobuf enum name.

Value
'nebius.kms.v1.AsymmetricAlgorithm'
ASYMMETRIC_ALGORITHM_UNSPECIFIED: int = (source)

Undocumented

Value
0
ECDSA_NIST_P256_SHA_256: int = (source)

ECDSA signature with NIST P-256 curve and SHA-256

Value
1
ECDSA_NIST_P384_SHA_384: int = (source)

ECDSA signature with NIST P-384 curve and SHA-384

Value
2
RSA_4096_ENC_OAEP_SHA_256: int = (source)

RSA encryption with RSA-4096 key, OAEP padding and SHA-256.

Value
3