(因此Padding和Hashing方式總共有12種組合)
Key Generation是產生一對公私鑰的過程,公鑰可以公開,私鑰要保密
RSA的金鑰產生函數 rsaKeyPair()
Signature Generation是用私鑰對訊息做簽章的過程(PKCS_1_V1_5)
RSA的簽章函數 rsaSignMessage_pkcs1_v1_5()
Signature Generation是用私鑰對訊息做簽章的過程(PSS)
RSA的簽章函數 rsaSignMessage_pss()
Signature Verification是用公鑰對簽章做驗證的過程(PKCS_1_V1_5)
RSA的簽章驗證函數 rsaVerifyMessage_pkcs1_v1_5()
Signature Verification是用公鑰對簽章做驗證的過程(PSS)
RSA的簽章驗證函數 rsaVerifyMessage_pss()