| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2007-04-24 07:48:59 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:54:23 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											2007-04-24 07:48:59 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-14 06:35:12 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SEED low level APIs are deprecated for public use, but still ok for | 
					
						
							|  |  |  |  * internal use. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include "internal/deprecated.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 19:33:01 +08:00
										 |  |  | #include <openssl/seed.h>
 | 
					
						
							|  |  |  | #include <openssl/modes.h>
 | 
					
						
							| 
									
										
										
										
											2007-04-24 07:48:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out, | 
					
						
							|  |  |  |                          size_t len, const SEED_KEY_SCHEDULE *ks, | 
					
						
							|  |  |  |                          unsigned char ivec[SEED_BLOCK_SIZE], int *num) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     CRYPTO_ofb128_encrypt(in, out, len, ks, ivec, num, | 
					
						
							|  |  |  |                           (block128_f) SEED_encrypt); | 
					
						
							|  |  |  | } |