Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update error messages for localization #452

Merged
merged 6 commits into from
Aug 18, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ protected Object[][] getContents() {
{"R_NullColumnEncryptionKey", "Column encryption key cannot be null."},
{"R_EmptyColumnEncryptionKey", "Empty column encryption key specified."},
{"R_CertificateNotFoundForAlias", "Certificate with alias {0} not found in the store provided by {1}. Verify the certificate has been imported correctly into the certificate location/store."},
{"R_UnrecoverableKeyAE", "Cannot recover private key from keystore with certificate details {0}. Verify that imported AE certificate contains private key and password provided for certificate is correct."},
{"R_UnrecoverableKeyAE", "Cannot recover private key from keystore with certificate details {0}. Verify that imported certificate for Always Encrypted contains private key and password provided for certificate is correct."},
{"R_KeyStoreNotFound", "System cannot find the key store file at the specified path. Verify that the path is correct and you have proper permissions to access it."},
{"R_CustomKeyStoreProviderMapNull", "Column encryption key store provider map cannot be null. Expecting a non-null value."},
{"R_EmptyCustomKeyStoreProviderName", "Invalid key store provider name specified. Key store provider names cannot be null or empty."},
Expand Down Expand Up @@ -320,8 +320,8 @@ protected Object[][] getContents() {
{"R_NoSHA256Algorithm","SHA-256 Algorithm is not supported."},
{"R_VerifySignature","Unable to verify signature of the column encryption key."},
{"R_CEKSignatureNotMatchCMK","The specified encrypted column encryption key signature does not match the signature computed with the column master key (Asymmetric key in Azure Key Vault) in {0}. The encrypted column encryption key may be corrupt, or the specified path may be incorrect."},
{"R_DecryptCEKError","Unable to decrypt CEK using specified Azure Key Vault key."},
{"R_EncryptCEKError","Unable to encrypt CEK using specified Azure Key Vault key."},
{"R_DecryptCEKError","Unable to decrypt column encryption key using specified Azure Key Vault key."},
{"R_EncryptCEKError","Unable to encrypt column encryption key using specified Azure Key Vault key."},
{"R_CipherTextLengthNotMatchRSASize","CipherText length does not match the RSA key size."},
{"R_GenerateSignature","Unable to generate signature using a specified Azure Key Vault Key URL."},
{"R_SignedHashLengthError","Signed hash length does not match the RSA key size."},
Expand Down