@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface AsymmetricCryptoServiceServer

    Handles server calls for the nebius.kms.v1.AsymmetricCryptoService service.

    interface AsymmetricCryptoServiceServer {
        decrypt: handleUnaryCall<
            AsymmetricDecryptRequest,
            AsymmetricDecryptResponse,
        >;
        getPublicKey: handleUnaryCall<
            AsymmetricGetPublicKeyRequest,
            AsymmetricGetPublicKeyResponse,
        >;
        signHash: handleUnaryCall<
            AsymmetricSignHashRequest,
            AsymmetricSignHashResponse,
        >;
        [name: string]: UntypedHandleCall;
    }

    Hierarchy

    • UntypedServiceImplementation
      • AsymmetricCryptoServiceServer

    Indexable

    • [name: string]: UntypedHandleCall

      Handles server calls for the nebius.kms.v1.AsymmetricCryptoService service.

    Index

    Decrypts the ciphertext with the specified key.

    getPublicKey: handleUnaryCall<
        AsymmetricGetPublicKeyRequest,
        AsymmetricGetPublicKeyResponse,
    >

    Retrieves the public key of an asymmetric key pair.

    Signs a hashed value using an asymmetric key.