// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.security.keyvault.keys.cryptography;
class AsymmetricSignatureAlgorithm extends LocalSignatureAlgorithm {
protected AsymmetricSignatureAlgorithm(String name) {
super(name);
}
}