OutSystems Forge 日本語データベース

RSA Cryptography by LxIS

※Forge全件データの日本語検索サービスをご利用になりたい場合は、こちらまでお問合せください。

Forge英文サイト

2014-06-04 2 LxIS 6.0+ All .NET
RSAアルゴリズムを使用してデータを暗号化できます。
今のところ2つの方法が実装されています: HashAndSignBytes 秘密鍵PEMファイルを使用して入力を暗号化します。 PEMファイルは、opensslユーティリティを使用して生成する必要があります。 "openssl genrsa -out privateKeyFileName.pem 1024" VerifySignedHash 公開鍵PEMファイルを使用して入力が署名されているかどうかを検証します。 公開鍵はopensslユーティリティを使用して生成できます "openssl rsa -in privateKeyFileName.pem -out publicKeyFileName.pem -outform PEM -pubout" また、PEMファイルをアップロードし、公開鍵/秘密鍵間の関連付けを作成するためのWebインタフェースも用意されています。 PEMファイルは、opensslユーティリティ(http://www.openssl.org/)を使用して生成することができます。 .netスタックに6.0を使用して作成されます。

[Overview]
Allows you to cipher data using RSAalgorithm.
[Detail]
For now there are two methods implemented: HashAndSignBytes Ciphers the input using a private key PEM file. PEM file has to be generated using openssl utility. "openssl genrsa -out privateKeyFileName.pem 1024" VerifySignedHash Verifies if input was signed using public key PEM file. Public key can be generated using openssl utility "openssl rsa -in privateKeyFileName.pem -out publicKeyFileName.pem -outform PEM -pubout" You have also a web interface to upload PEM files and create associations between public/private keys. PEM files can be generated using openssl utility (http://www.openssl.org/) Created using 6.0 for .net stack.
戻る