大家好,欢迎来到IT知识分享网。
在使用某个密码算法前需要先注册,然后才能使用。密码算法索引值的获取步骤
- 步骤1. 利用int register_cipher(const struct ltc_cipher_descriptor *cipher)注册算法
- 步骤2. 利用int find_cipher(const char *name)获取已注册的密码算法索引值
- 步骤3. 使用完毕后利用int unregister_cipher(const struct ltc_cipher_descriptor *cipher)注销密码算法
函数find_cipher(const char *name)中的name对应ltc_cipher_descriptor中的name。
程序中可以注册以下密码算法(struct ltc_cipher_descriptor)
register_cipher (&aes_desc);
register_cipher (&blowfish_desc);
register_cipher (&xtea_desc);
register_cipher (&rc5_desc);
register_cipher (&rc6_desc);
register_cipher (&saferp_desc);
register_cipher (&twofish_desc);
register_cipher (&safer_k64_desc);
register_cipher (&safer_sk64_desc);
register_cipher (&safer_k128_desc);
register_cipher (&safer_sk128_desc);
register_cipher (&rc2_desc);
register_cipher (&des_desc);
register_cipher (&des3_desc);
register_cipher (&cast5_desc);
register_cipher (&noekeon_desc);
register_cipher (&skipjack_desc);
register_cipher (&khazad_desc);
register_cipher (&anubis_desc);
例
以下是一个简单的使用AES-ECB加解密的概要过程。
if ( register_cipher (&aes_desc) != CRYPT_OK )// 注册aes
return CRYPT_INVALID_CIPHER;
if ((idx = find_cipher(“aes”)) == -1) // 找到aes索引号,在后面使用
return CRYPT_NOP;
if ((err = ecb_start(idx, key, keylen, 0, &ctr)) != CRYPT_OK)//ECB初始化
return err;
if ((err = ecb_encrypt( pt, ct, msglen, &ctr)) != CRYPT_OK) //ECB加密
return err;
if ((err = ecb_decrypt( ct, pt, msglen, &ctr)) != CRYPT_OK) //ECB解密
return err;
ecb_done(&ctr); //ECB反初始化
unregister_cipher(&aes_desc); //注销aes
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/10965.html