Browse Source

add missing unregister of no_prng

Steffen Jaeckel 11 years ago
parent
commit
faa9c6a607
1 changed files with 2 additions and 0 deletions
  1. 2 0
      testprof/pkcs_1_pss_test.c

+ 2 - 0
testprof/pkcs_1_pss_test.c

@@ -47,6 +47,8 @@ int pkcs_1_pss_test(void)
     mp_clear_multi(key->d,  key->e, key->N, key->dQ, key->dP, key->qP, key->p, key->q, NULL);
     mp_clear_multi(key->d,  key->e, key->N, key->dQ, key->dP, key->qP, key->p, key->q, NULL);
   } /* for */
   } /* for */
 
 
+  unregister_prng(&no_prng_desc);
+
   return 0;
   return 0;
 }
 }